home *** CD-ROM | disk | FTP | other *** search
-
- /* A Bison parser, made from parse.y */
-
- #define IF 258
- #define THEN 259
- #define ELSE 260
- #define ELIF 261
- #define FI 262
- #define CASE 263
- #define ESAC 264
- #define FOR 265
- #define WHILE 266
- #define UNTIL 267
- #define DO 268
- #define DONE 269
- #define FUNCTION 270
- #define IN 271
- #define BANG 272
- #define WORD 273
- #define NUMBER 274
- #define AND_AND 275
- #define OR_OR 276
- #define GREATER_GREATER 277
- #define LESS_LESS 278
- #define LESS_AND 279
- #define GREATER_AND 280
- #define SEMI_SEMI 281
- #define LESS_LESS_MINUS 282
- #define AND_GREATER 283
- #define LESS_GREATER 284
- #define GREATER_BAR 285
- #define yacc_EOF 286
-
- #line 21 "parse.y"
-
- #include <stdio.h>
- #include <signal.h>
- #include "shell.h"
- #include "flags.h"
-
- #if defined (READLINE)
- #include <readline/readline.h>
- #endif /* READLINE */
-
- #include <readline/history.h>
-
- #define YYDEBUG 1
- extern int eof_encountered;
- extern int no_line_editing;
- extern int interactive, interactive_shell;
-
- /* **************************************************************** */
- /* */
- /* "Forward" declarations */
- /* */
- /* **************************************************************** */
-
-
- /* This is kind of sickening. In order to let these variables be seen by
- all the functions that need them, I am forced to place their declarations
- far away from the place where they should logically be found. */
-
- /* prompt_string_pointer points to one of these, never to an actual string. */
- char *ps1_prompt, *ps2_prompt;
-
- /* Handle on the current prompt string. Indirectly points through
- ps1_ or ps2_prompt. */
- char **prompt_string_pointer = (char **)NULL;
- char *current_prompt_string;
-
- /* Variables to manage the task of reading here documents, because we need to
- defer the reading until after a complete command has been collected. */
- REDIRECT *redirection_needing_here_doc = (REDIRECT *)NULL;
- int need_here_doc = 0;
-
- #line 63 "parse.y"
- typedef union {
- WORD_DESC *word; /* the word that we read. */
- int number; /* the number that we read. */
- WORD_LIST *word_list;
- COMMAND *command;
- REDIRECT *redirect;
- ELEMENT element;
- PATTERN_LIST *pattern;
- } YYSTYPE;
-
- #ifndef YYLTYPE
- typedef
- struct yyltype
- {
- int timestamp;
- int first_line;
- int first_column;
- int last_line;
- int last_column;
- char *text;
- }
- yyltype;
-
- #define YYLTYPE yyltype
- #endif
-
- #include <stdio.h>
-
- #ifndef __STDC__
- #define const
- #endif
-
-
-
- #define YYFINAL 212
- #define YYFLAG -32768
- #define YYNTBASE 43
-
- #define YYTRANSLATE(x) ((unsigned)(x) <= 286 ? yytranslate[x] : 66)
-
- static const char yytranslate[] = { 0,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 33,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 31, 2, 41,
- 42, 2, 2, 2, 38, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 32, 37,
- 2, 36, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 39, 35, 40, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 1, 2, 3, 4, 5,
- 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 34
- };
-
- static const short yyprhs[] = { 0,
- 0, 3, 5, 8, 10, 11, 14, 17, 20, 24,
- 28, 31, 35, 38, 42, 45, 49, 52, 56, 59,
- 63, 66, 70, 73, 77, 80, 83, 87, 90, 93,
- 97, 99, 101, 103, 106, 108, 111, 113, 115, 118,
- 125, 132, 140, 148, 159, 170, 177, 185, 192, 198,
- 206, 213, 219, 225, 229, 231, 237, 244, 249, 253,
- 258, 265, 271, 273, 276, 281, 286, 288, 291, 297,
- 303, 305, 309, 312, 314, 318, 322, 326, 331, 336,
- 341, 346, 351, 353, 356, 358, 360, 362, 363, 366,
- 368, 371, 374, 379, 384, 388, 392, 394, 397, 402
- };
-
- static const short yyrhs[] = { 63,
- 33, 0, 33, 0, 1, 33, 0, 34, 0, 0,
- 44, 18, 0, 36, 18, 0, 37, 18, 0, 19,
- 36, 18, 0, 19, 37, 18, 0, 22, 18, 0,
- 19, 22, 18, 0, 23, 18, 0, 19, 23, 18,
- 0, 24, 19, 0, 19, 24, 19, 0, 25, 19,
- 0, 19, 25, 19, 0, 27, 18, 0, 19, 27,
- 18, 0, 25, 38, 0, 19, 25, 38, 0, 24,
- 38, 0, 19, 24, 38, 0, 28, 18, 0, 25,
- 18, 0, 19, 29, 18, 0, 29, 18, 0, 30,
- 18, 0, 19, 30, 18, 0, 18, 0, 45, 0,
- 45, 0, 47, 45, 0, 46, 0, 48, 46, 0,
- 48, 0, 50, 0, 50, 47, 0, 10, 18, 62,
- 13, 58, 14, 0, 10, 18, 62, 39, 58, 40,
- 0, 10, 18, 32, 62, 13, 58, 14, 0, 10,
- 18, 32, 62, 39, 58, 40, 0, 10, 18, 62,
- 16, 44, 61, 62, 13, 58, 14, 0, 10, 18,
- 62, 16, 44, 61, 62, 39, 58, 40, 0, 8,
- 18, 62, 16, 62, 9, 0, 8, 18, 62, 16,
- 55, 62, 9, 0, 8, 18, 62, 16, 53, 9,
- 0, 3, 58, 4, 58, 7, 0, 3, 58, 4,
- 58, 5, 58, 7, 0, 3, 58, 4, 58, 52,
- 7, 0, 11, 58, 13, 58, 14, 0, 12, 58,
- 13, 58, 14, 0, 41, 58, 42, 0, 51, 0,
- 18, 41, 42, 62, 51, 0, 15, 18, 41, 42,
- 62, 51, 0, 15, 18, 62, 51, 0, 39, 58,
- 40, 0, 6, 58, 4, 58, 0, 6, 58, 4,
- 58, 5, 58, 0, 6, 58, 4, 58, 52, 0,
- 54, 0, 55, 54, 0, 62, 57, 42, 58, 0,
- 62, 57, 42, 62, 0, 56, 0, 55, 56, 0,
- 62, 57, 42, 58, 26, 0, 62, 57, 42, 62,
- 26, 0, 18, 0, 57, 35, 18, 0, 62, 59,
- 0, 60, 0, 60, 33, 62, 0, 60, 31, 62,
- 0, 60, 32, 62, 0, 60, 20, 62, 60, 0,
- 60, 21, 62, 60, 0, 60, 31, 62, 60, 0,
- 60, 32, 62, 60, 0, 60, 33, 62, 60, 0,
- 65, 0, 17, 65, 0, 33, 0, 32, 0, 34,
- 0, 0, 62, 33, 0, 64, 0, 64, 31, 0,
- 64, 32, 0, 64, 20, 62, 64, 0, 64, 21,
- 62, 64, 0, 64, 31, 64, 0, 64, 32, 64,
- 0, 65, 0, 17, 65, 0, 65, 35, 62, 65,
- 0, 49, 0
- };
-
- #if YYDEBUG != 0
- static const short yyrline[] = { 0,
- 102, 111, 118, 134, 144, 146, 150, 152, 154, 156,
- 158, 160, 162, 168, 174, 176, 178, 180, 182, 188,
- 194, 196, 198, 200, 202, 204, 206, 208, 218, 220,
- 224, 226, 230, 234, 245, 247, 251, 254, 257, 264,
- 266, 268, 270, 273, 275, 278, 280, 282, 287, 289,
- 291, 294, 296, 299, 302, 305, 308, 311, 315, 319,
- 321, 323, 328, 329, 333, 335, 339, 341, 345, 347,
- 351, 353, 362, 371, 372, 373, 375, 379, 381, 383,
- 385, 387, 389, 391, 398, 399, 400, 403, 404, 413,
- 420, 427, 436, 438, 440, 442, 444, 446, 453, 456
- };
-
- static const char * const yytname[] = { "$",
- "error","$illegal.","IF","THEN","ELSE","ELIF","FI","CASE","ESAC","FOR",
- "WHILE","UNTIL","DO","DONE","FUNCTION","IN","BANG","WORD","NUMBER","AND_AND",
- "OR_OR","GREATER_GREATER","LESS_LESS","LESS_AND","GREATER_AND","SEMI_SEMI","LESS_LESS_MINUS","AND_GREATER","LESS_GREATER","GREATER_BAR",
- "'&'","';'","'\\n'","yacc_EOF","'|'","'>'","'<'","'-'","'{'","'}'",
- "'('","')'","inputunit","words","redirection","simple_command_element","redirections","simple_command","command","shell_command",
- "group_command","elif_clause","case_clause_1","pattern_list_1","case_clause_sequence","pattern_list","pattern","list","list0","list1",
- "list_terminator","newlines","simple_list","simple_list1","pipeline",""
- };
- #endif
-
- static const short yyr1[] = { 0,
- 43, 43, 43, 43, 44, 44, 45, 45, 45, 45,
- 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
- 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
- 46, 46, 47, 47, 48, 48, 49, 49, 49, 50,
- 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
- 50, 50, 50, 50, 50, 50, 50, 50, 51, 52,
- 52, 52, 53, 53, 54, 54, 55, 55, 56, 56,
- 57, 57, 58, 59, 59, 59, 59, 60, 60, 60,
- 60, 60, 60, 60, 61, 61, 61, 62, 62, 63,
- 63, 63, 64, 64, 64, 64, 64, 64, 65, 65
- };
-
- static const short yyr2[] = { 0,
- 2, 1, 2, 1, 0, 2, 2, 2, 3, 3,
- 2, 3, 2, 3, 2, 3, 2, 3, 2, 3,
- 2, 3, 2, 3, 2, 2, 3, 2, 2, 3,
- 1, 1, 1, 2, 1, 2, 1, 1, 2, 6,
- 6, 7, 7, 10, 10, 6, 7, 6, 5, 7,
- 6, 5, 5, 3, 1, 5, 6, 4, 3, 4,
- 6, 5, 1, 2, 4, 4, 1, 2, 5, 5,
- 1, 3, 2, 1, 3, 3, 3, 4, 4, 4,
- 4, 4, 1, 2, 1, 1, 1, 0, 2, 1,
- 2, 2, 4, 4, 3, 3, 1, 2, 4, 1
- };
-
- static const short yydefact[] = { 0,
- 0, 88, 0, 0, 88, 88, 0, 0, 31, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 2, 4,
- 0, 0, 88, 88, 32, 35, 37, 100, 38, 55,
- 0, 90, 97, 3, 0, 0, 88, 88, 0, 0,
- 88, 98, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 11, 13, 15, 23, 26, 17, 21, 19,
- 25, 28, 29, 7, 8, 0, 0, 31, 36, 33,
- 39, 1, 88, 88, 91, 92, 88, 88, 0, 89,
- 73, 74, 83, 0, 88, 0, 88, 88, 0, 0,
- 88, 12, 14, 16, 24, 18, 22, 20, 27, 30,
- 9, 10, 59, 54, 34, 0, 0, 95, 96, 0,
- 0, 84, 88, 88, 88, 88, 88, 88, 0, 88,
- 5, 88, 0, 0, 88, 58, 0, 93, 94, 0,
- 0, 99, 88, 88, 49, 0, 0, 0, 76, 77,
- 75, 0, 63, 88, 67, 0, 88, 88, 0, 0,
- 0, 52, 53, 0, 56, 0, 0, 51, 78, 79,
- 80, 81, 82, 48, 64, 68, 0, 46, 71, 0,
- 0, 0, 40, 6, 86, 85, 87, 88, 41, 57,
- 50, 88, 88, 88, 88, 47, 0, 88, 42, 43,
- 0, 60, 0, 0, 0, 72, 65, 66, 88, 88,
- 88, 62, 69, 70, 0, 0, 61, 44, 45, 0,
- 0, 0
- };
-
- static const short yydefgoto[] = { 210,
- 150, 25, 26, 71, 27, 28, 29, 30, 136, 142,
- 143, 144, 145, 170, 35, 81, 82, 178, 36, 31,
- 108, 83
- };
-
- static const short yypact[] = { 151,
- -8,-32768, 9, 18,-32768,-32768, 24, 350, 7, 390,
- 41, 46, 20, 33, 48, 54, 66, 80,-32768,-32768,
- 85, 92,-32768,-32768,-32768,-32768, 374,-32768, 77,-32768,
- 21, 104, 76,-32768, 108, 222,-32768, 86, 114, 121,
- 96, 76, 79, 120, 122, 36, 37, 123, 126, 127,
- 130, 131,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
- -32768,-32768,-32768,-32768,-32768, 111, 97,-32768,-32768,-32768,
- 77,-32768,-32768,-32768, 286, 286,-32768,-32768, 350,-32768,
- -32768, 99, 76, -2,-32768, -1,-32768,-32768, 116, -11,
- -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
- -32768,-32768,-32768,-32768,-32768, 254, 254, 13, 13, 318,
- 63, 76,-32768,-32768,-32768,-32768,-32768,-32768, 4,-32768,
- -32768,-32768, 139, 150,-32768,-32768, -11,-32768,-32768, 286,
- 286,-32768,-32768,-32768,-32768, 158, 222, 222, 222, 222,
- 222, 162,-32768,-32768,-32768, 11,-32768,-32768, 153, 47,
- 132,-32768,-32768, -11,-32768, 175, 182,-32768,-32768,-32768,
- 56, 56, 56,-32768,-32768,-32768, 17,-32768,-32768, -12,
- 177, 149,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
- -32768,-32768,-32768,-32768,-32768,-32768, 179,-32768,-32768,-32768,
- 8, 88, 222, 222, 222,-32768, 173, 190,-32768,-32768,
- -32768,-32768,-32768,-32768, 189, 164,-32768,-32768,-32768, 206,
- 210,-32768
- };
-
- static const short yypgoto[] = {-32768,
- -32768, -18, 184,-32768,-32768,-32768,-32768, -87, 29,-32768,
- 78,-32768, 84,-32768, -5,-32768, -133,-32768, -28,-32768,
- 2, 16
- };
-
-
- #define YYLAST 427
-
-
- static const short yytable[] = { 39,
- 40, 32, 126, 159, 160, 161, 162, 163, 84, 86,
- 70, 120, 90, 118, 121, 33, 147, 66, 67, 168,
- 199, 80, 187, 42, 34, 186, 37, 23, 169, 188,
- 80, 80, 73, 74, 169, 38, 80, 122, 55, 155,
- 80, 41, 148, 80, 106, 107, 200, 43, 110, 80,
- 57, 58, 105, 72, 94, 96, 119, 56, 53, 161,
- 162, 163, 127, 54, 174, 60, 180, 133, 134, 135,
- 59, 61, 111, 95, 97, 113, 114, 109, 175, 176,
- 177, 123, 124, 62, 137, 138, 139, 140, 141, 146,
- 33, 33, 201, 134, 112, 10, 154, 63, 11, 12,
- 13, 14, 64, 15, 16, 17, 18, 128, 129, 65,
- 77, 78, 21, 22, 149, 167, 151, 85, 113, 114,
- 91, 33, 33, 73, 74, 132, 87, 156, 157, 115,
- 116, 117, 109, 88, 75, 76, 89, 92, 104, 93,
- 98, 171, 172, 99, 100, 33, 33, 101, 102, 191,
- 103, 1, 152, 2, 193, 194, 195, 125, 3, 198,
- 4, 5, 6, 153, 158, 7, 173, 8, 9, 10,
- 164, 179, 11, 12, 13, 14, 192, 15, 16, 17,
- 18, 181, 197, 19, 20, 182, 21, 22, 190, 23,
- 189, 24, 2, 205, 206, 207, 196, 3, 203, 4,
- 5, 6, 208, 209, 7, 211, 79, 9, 10, 212,
- 69, 11, 12, 13, 14, 204, 15, 16, 17, 18,
- 202, 165, 80, 0, 2, 21, 22, 166, 23, 3,
- 24, 4, 5, 6, 0, 0, 7, 0, 79, 9,
- 10, 0, 0, 11, 12, 13, 14, 0, 15, 16,
- 17, 18, 0, 0, 80, 0, 2, 21, 22, 0,
- 23, 3, 24, 4, 5, 6, 0, 0, 7, 0,
- 8, 9, 10, 0, 0, 11, 12, 13, 14, 0,
- 15, 16, 17, 18, 0, 0, 80, 0, 2, 21,
- 22, 0, 23, 3, 24, 4, 5, 6, 0, 0,
- 7, 0, 8, 9, 10, 0, 0, 11, 12, 13,
- 14, 0, 15, 16, 17, 18, 0, 0, 0, 0,
- 2, 21, 22, 0, 23, 3, 24, 4, 5, 6,
- 0, 0, 7, 0, 0, 9, 10, 0, 0, 11,
- 12, 13, 14, 0, 15, 16, 17, 18, 0, 0,
- 80, 0, 2, 21, 22, 0, 23, 3, 24, 4,
- 5, 6, 0, 0, 7, 0, 0, 9, 10, 0,
- 0, 11, 12, 13, 14, 0, 15, 16, 17, 18,
- 0, 0, 0, 0, 0, 21, 22, 0, 23, 0,
- 24, 68, 10, 0, 0, 11, 12, 13, 14, 0,
- 15, 16, 17, 18, 0, 0, 0, 0, 0, 21,
- 22, 44, 45, 46, 47, 0, 48, 0, 49, 50,
- 0, 0, 0, 0, 0, 51, 52
- };
-
- static const short yycheck[] = { 5,
- 6, 0, 90, 137, 138, 139, 140, 141, 37, 38,
- 29, 13, 41, 16, 16, 0, 13, 23, 24, 9,
- 13, 33, 35, 8, 33, 9, 18, 39, 18, 42,
- 33, 33, 20, 21, 18, 18, 33, 39, 19, 127,
- 33, 18, 39, 33, 73, 74, 39, 41, 77, 33,
- 18, 19, 71, 33, 19, 19, 85, 38, 18, 193,
- 194, 195, 91, 18, 18, 18, 154, 5, 6, 7,
- 38, 18, 78, 38, 38, 20, 21, 76, 32, 33,
- 34, 87, 88, 18, 113, 114, 115, 116, 117, 118,
- 75, 76, 5, 6, 79, 19, 125, 18, 22, 23,
- 24, 25, 18, 27, 28, 29, 30, 106, 107, 18,
- 35, 4, 36, 37, 120, 144, 122, 32, 20, 21,
- 42, 106, 107, 20, 21, 110, 13, 133, 134, 31,
- 32, 33, 131, 13, 31, 32, 41, 18, 42, 18,
- 18, 147, 148, 18, 18, 130, 131, 18, 18, 178,
- 40, 1, 14, 3, 183, 184, 185, 42, 8, 188,
- 10, 11, 12, 14, 7, 15, 14, 17, 18, 19,
- 9, 40, 22, 23, 24, 25, 182, 27, 28, 29,
- 30, 7, 188, 33, 34, 4, 36, 37, 40, 39,
- 14, 41, 3, 199, 200, 201, 18, 8, 26, 10,
- 11, 12, 14, 40, 15, 0, 17, 18, 19, 0,
- 27, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 192, 144, 33, -1, 3, 36, 37, 144, 39, 8,
- 41, 10, 11, 12, -1, -1, 15, -1, 17, 18,
- 19, -1, -1, 22, 23, 24, 25, -1, 27, 28,
- 29, 30, -1, -1, 33, -1, 3, 36, 37, -1,
- 39, 8, 41, 10, 11, 12, -1, -1, 15, -1,
- 17, 18, 19, -1, -1, 22, 23, 24, 25, -1,
- 27, 28, 29, 30, -1, -1, 33, -1, 3, 36,
- 37, -1, 39, 8, 41, 10, 11, 12, -1, -1,
- 15, -1, 17, 18, 19, -1, -1, 22, 23, 24,
- 25, -1, 27, 28, 29, 30, -1, -1, -1, -1,
- 3, 36, 37, -1, 39, 8, 41, 10, 11, 12,
- -1, -1, 15, -1, -1, 18, 19, -1, -1, 22,
- 23, 24, 25, -1, 27, 28, 29, 30, -1, -1,
- 33, -1, 3, 36, 37, -1, 39, 8, 41, 10,
- 11, 12, -1, -1, 15, -1, -1, 18, 19, -1,
- -1, 22, 23, 24, 25, -1, 27, 28, 29, 30,
- -1, -1, -1, -1, -1, 36, 37, -1, 39, -1,
- 41, 18, 19, -1, -1, 22, 23, 24, 25, -1,
- 27, 28, 29, 30, -1, -1, -1, -1, -1, 36,
- 37, 22, 23, 24, 25, -1, 27, -1, 29, 30,
- -1, -1, -1, -1, -1, 36, 37
- };
- /* -*-C-*- Note some compilers choke on comments on `#line' lines. */
- #line 3 "/net/acae127/home/bammi/lib/bison.simple"
-
- /* Skeleton output parser for bison,
- Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 1, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-
- #ifndef alloca
- #ifdef __GNUC__
- #define alloca __builtin_alloca
- #else /* Not GNU C. */
- #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__)
- #include <alloca.h>
- #else /* Not sparc */
- #ifdef MSDOS
- #include <malloc.h>
- #endif /* MSDOS */
- #endif /* Not sparc. */
- #endif /* Not GNU C. */
- #endif /* alloca not defined. */
-
- /* This is the parser code that is written into each bison parser
- when the %semantic_parser declaration is not specified in the grammar.
- It was written by Richard Stallman by simplifying the hairy parser
- used when %semantic_parser is specified. */
-
- /* Note: there must be only one dollar sign in this file.
- It is replaced by the list of actions, each action
- as one case of the switch. */
-
- #define yyerrok (yyerrstatus = 0)
- #define yyclearin (yychar = YYEMPTY)
- #define YYEMPTY -2
- #define YYEOF 0
- #define YYACCEPT return(0)
- #define YYABORT return(1)
- #define YYERROR goto yyerrlab1
- /* Like YYERROR except do call yyerror.
- This remains here temporarily to ease the
- transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. */
- #define YYFAIL goto yyerrlab
- #define YYRECOVERING() (!!yyerrstatus)
- #define YYBACKUP(token, value) \
- do \
- if (yychar == YYEMPTY && yylen == 1) \
- { yychar = (token), yylval = (value); \
- yychar1 = YYTRANSLATE (yychar); \
- YYPOPSTACK; \
- goto yybackup; \
- } \
- else \
- { yyerror ("syntax error: cannot back up"); YYERROR; } \
- while (0)
-
- #define YYTERROR 1
- #define YYERRCODE 256
-
- #ifndef YYPURE
- #define YYLEX yylex()
- #endif
-
- #ifdef YYPURE
- #ifdef YYLSP_NEEDED
- #define YYLEX yylex(&yylval, &yylloc)
- #else
- #define YYLEX yylex(&yylval)
- #endif
- #endif
-
- /* If nonreentrant, generate the variables here */
-
- #ifndef YYPURE
-
- int yychar; /* the lookahead symbol */
- YYSTYPE yylval; /* the semantic value of the */
- /* lookahead symbol */
-
- #ifdef YYLSP_NEEDED
- YYLTYPE yylloc; /* location data for the lookahead */
- /* symbol */
- #endif
-
- int yynerrs; /* number of parse errors so far */
- #endif /* not YYPURE */
-
- #if YYDEBUG != 0
- int yydebug; /* nonzero means print parse trace */
- /* Since this is uninitialized, it does not stop multiple parsers
- from coexisting. */
- #endif
-
- /* YYINITDEPTH indicates the initial size of the parser's stacks */
-
- #ifndef YYINITDEPTH
- #define YYINITDEPTH 200
- #endif
-
- /* YYMAXDEPTH is the maximum size the stacks can grow to
- (effective only if the built-in stack extension method is used). */
-
- #if YYMAXDEPTH == 0
- #undef YYMAXDEPTH
- #endif
-
- #ifndef YYMAXDEPTH
- #define YYMAXDEPTH 10000
- #endif
-
- #ifndef __cplusplus
-
- /* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
- static void
- __yy_bcopy (from, to, count)
- char *from;
- char *to;
- int count;
- {
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
- }
-
- #else /* __cplusplus */
-
- /* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
- static void
- __yy_bcopy (char *from, char *to, int count)
- {
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
- }
-
- #endif
-
- #line 160 "/net/acae127/home/bammi/lib/bison.simple"
- int
- yyparse()
- {
- register int yystate;
- register int yyn;
- register short *yyssp;
- register YYSTYPE *yyvsp;
- int yyerrstatus; /* number of tokens to shift before error messages enabled */
- int yychar1; /* lookahead token as an internal (translated) token number */
-
- short yyssa[YYINITDEPTH]; /* the state stack */
- YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
-
- short *yyss = yyssa; /* refer to the stacks thru separate pointers */
- YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
-
- #ifdef YYLSP_NEEDED
- YYLTYPE *yyls = yylsa;
- YYLTYPE *yylsp;
- YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
-
- #define YYPOPSTACK (yyvsp--, yysp--, yylsp--)
- #else
- #define YYPOPSTACK (yyvsp--, yysp--)
- #endif
-
- int yystacksize = YYINITDEPTH;
-
- #ifdef YYPURE
- int yychar;
- YYSTYPE yylval;
- int yynerrs;
- #ifdef YYLSP_NEEDED
- YYLTYPE yylloc;
- #endif
- #endif
-
- YYSTYPE yyval; /* the variable used to return */
- /* semantic values from the action */
- /* routines */
-
- int yylen;
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Starting parse\n");
- #endif
-
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
-
- /* Initialize stack pointers.
- Waste one element of value and location stack
- so that they stay on the same level as the state stack. */
-
- yyssp = yyss - 1;
- yyvsp = yyvs;
- #ifdef YYLSP_NEEDED
- yylsp = yyls;
- #endif
-
- /* Push a new state, which is found in yystate . */
- /* In all cases, when you get here, the value and location stacks
- have just been pushed. so pushing a state here evens the stacks. */
- yynewstate:
-
- *++yyssp = yystate;
-
- if (yyssp >= yyss + yystacksize - 1)
- {
- /* Give user a chance to reallocate the stack */
- /* Use copies of these so that the &'s don't force the real ones into memory. */
- YYSTYPE *yyvs1 = yyvs;
- short *yyss1 = yyss;
- #ifdef YYLSP_NEEDED
- YYLTYPE *yyls1 = yyls;
- #endif
-
- /* Get the current used size of the three stacks, in elements. */
- int size = yyssp - yyss + 1;
-
- #ifdef yyoverflow
- /* Each stack pointer address is followed by the size of
- the data in use in that stack, in bytes. */
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- #ifdef YYLSP_NEEDED
- &yyls1, size * sizeof (*yylsp),
- #endif
- &yystacksize);
-
- yyss = yyss1; yyvs = yyvs1;
- #ifdef YYLSP_NEEDED
- yyls = yyls1;
- #endif
- #else /* no yyoverflow */
- /* Extend the stack our own way. */
- if (yystacksize >= YYMAXDEPTH)
- {
- yyerror("parser stack overflow");
- return 2;
- }
- yystacksize *= 2;
- if (yystacksize > YYMAXDEPTH)
- yystacksize = YYMAXDEPTH;
- yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
- __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
- yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
- __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
- #ifdef YYLSP_NEEDED
- yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
- __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
- #endif
- #endif /* no yyoverflow */
-
- yyssp = yyss + size - 1;
- yyvsp = yyvs + size - 1;
- #ifdef YYLSP_NEEDED
- yylsp = yyls + size - 1;
- #endif
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Stack size increased to %d\n", yystacksize);
- #endif
-
- if (yyssp >= yyss + yystacksize - 1)
- YYABORT;
- }
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Entering state %d\n", yystate);
- #endif
-
- yybackup:
-
- /* Do appropriate processing given the current state. */
- /* Read a lookahead token if we need one and don't already have one. */
- /* yyresume: */
-
- /* First try to decide what to do without reference to lookahead token. */
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* yychar is either YYEMPTY or YYEOF
- or a valid token in external form. */
-
- if (yychar == YYEMPTY)
- {
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Reading a token: ");
- #endif
- yychar = YYLEX;
- }
-
- /* Convert token to internal form (in yychar1) for indexing tables with */
-
- if (yychar <= 0) /* This means end of input. */
- {
- yychar1 = 0;
- yychar = YYEOF; /* Don't call YYLEX any more */
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Now at end of input.\n");
- #endif
- }
- else
- {
- yychar1 = YYTRANSLATE(yychar);
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Next token is %d (%s)\n", yychar, yytname[yychar1]);
- #endif
- }
-
- yyn += yychar1;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
- goto yydefault;
-
- yyn = yytable[yyn];
-
- /* yyn is what to do for this token type in this state.
- Negative => reduce, -yyn is rule number.
- Positive => shift, yyn is new state.
- New state is final state => don't bother to shift,
- just return success.
- 0, or most negative number => error. */
-
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrlab;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- /* Shift the lookahead token. */
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
- #endif
-
- /* Discard the token being shifted unless it is eof. */
- if (yychar != YYEOF)
- yychar = YYEMPTY;
-
- *++yyvsp = yylval;
- #ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
- #endif
-
- /* count tokens shifted since error; after three, turn off error status. */
- if (yyerrstatus) yyerrstatus--;
-
- yystate = yyn;
- goto yynewstate;
-
- /* Do the default action for the current state. */
- yydefault:
-
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
-
- /* Do a reduction. yyn is the number of a rule to reduce with. */
- yyreduce:
- yylen = yyr2[yyn];
- yyval = yyvsp[1-yylen]; /* implement default value of the action */
-
- #if YYDEBUG != 0
- if (yydebug)
- {
- int i;
-
- fprintf (stderr, "Reducing via rule %d (line %d), ",
- yyn, yyrline[yyn]);
-
- /* Print the symboles being reduced, and their result. */
- for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
- fprintf (stderr, "%s ", yytname[yyrhs[i]]);
- fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
- }
- #endif
-
-
- switch (yyn) {
-
- case 1:
- #line 103 "parse.y"
- {
- /* Case of regular command. Discard the error
- safety net,and return the command just parsed. */
- global_command = yyvsp[-1].command;
- eof_encountered = 0;
- discard_parser_constructs (0);
- YYACCEPT;
- ;
- break;}
- case 2:
- #line 112 "parse.y"
- {
- /* Case of regular command, but not a very
- interesting one. Return a NULL command. */
- global_command = (COMMAND *)NULL;
- YYACCEPT;
- ;
- break;}
- case 3:
- #line 120 "parse.y"
- {
- /* Error during parsing. Return NULL command. */
- global_command = (COMMAND *)NULL;
- eof_encountered = 0;
- discard_parser_constructs (1);
- if (interactive)
- {
- YYACCEPT;
- }
- else
- {
- YYABORT;
- }
- ;
- break;}
- case 4:
- #line 135 "parse.y"
- {
- /* Case of EOF seen by itself. Do ignoreeof or
- not. */
- global_command = (COMMAND *)NULL;
- handle_eof_input_unit ();
- YYACCEPT;
- ;
- break;}
- case 5:
- #line 145 "parse.y"
- { yyval.word_list = (WORD_LIST *)NULL; ;
- break;}
- case 6:
- #line 147 "parse.y"
- { yyval.word_list = make_word_list (yyvsp[0].word, yyvsp[-1].word_list); ;
- break;}
- case 7:
- #line 151 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_output_direction, yyvsp[0].word); ;
- break;}
- case 8:
- #line 153 "parse.y"
- { yyval.redirect = make_redirection ( 0, r_input_direction, yyvsp[0].word); ;
- break;}
- case 9:
- #line 155 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_output_direction, yyvsp[0].word); ;
- break;}
- case 10:
- #line 157 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_input_direction, yyvsp[0].word); ;
- break;}
- case 11:
- #line 159 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_appending_to, yyvsp[0].word); ;
- break;}
- case 12:
- #line 161 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_appending_to, yyvsp[0].word); ;
- break;}
- case 13:
- #line 163 "parse.y"
- {
- yyval.redirect = make_redirection ( 0, r_reading_until, yyvsp[0].word);
- redirection_needing_here_doc = yyval.redirect;
- need_here_doc = 1;
- ;
- break;}
- case 14:
- #line 169 "parse.y"
- {
- yyval.redirect = make_redirection (yyvsp[-2].number, r_reading_until, yyvsp[0].word);
- redirection_needing_here_doc = yyval.redirect;
- need_here_doc = 1;
- ;
- break;}
- case 15:
- #line 175 "parse.y"
- { yyval.redirect = make_redirection ( 0, r_duplicating, yyvsp[0].number); ;
- break;}
- case 16:
- #line 177 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_duplicating, yyvsp[0].number); ;
- break;}
- case 17:
- #line 179 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_duplicating, yyvsp[0].number); ;
- break;}
- case 18:
- #line 181 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_duplicating, yyvsp[0].number); ;
- break;}
- case 19:
- #line 183 "parse.y"
- {
- yyval.redirect = make_redirection ( 0, r_deblank_reading_until, yyvsp[0].word);
- redirection_needing_here_doc = yyval.redirect;
- need_here_doc = 1;
- ;
- break;}
- case 20:
- #line 189 "parse.y"
- {
- yyval.redirect = make_redirection (yyvsp[-2].number, r_deblank_reading_until, yyvsp[0].word);
- redirection_needing_here_doc = yyval.redirect;
- need_here_doc = 1;
- ;
- break;}
- case 21:
- #line 195 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_close_this, 0); ;
- break;}
- case 22:
- #line 197 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_close_this, 0); ;
- break;}
- case 23:
- #line 199 "parse.y"
- { yyval.redirect = make_redirection ( 0, r_close_this, 0); ;
- break;}
- case 24:
- #line 201 "parse.y"
- { yyval.redirect = make_redirection (yyvsp[-2].number, r_close_this, 0); ;
- break;}
- case 25:
- #line 203 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_err_and_out, yyvsp[0].word); ;
- break;}
- case 26:
- #line 205 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_err_and_out, yyvsp[0].word); ;
- break;}
- case 27:
- #line 207 "parse.y"
- { yyval.redirect = make_redirection ( yyvsp[-2].number, r_input_output, yyvsp[0].word); ;
- break;}
- case 28:
- #line 209 "parse.y"
- {
- REDIRECT *t1, *t2;
- extern WORD_DESC *copy_word ();
-
- t1 = make_redirection ( 0, r_input_direction, yyvsp[0].word);
- t2 = make_redirection ( 1, r_output_direction, copy_word (yyvsp[0].word));
- t1->next = t2;
- yyval.redirect = t1;
- ;
- break;}
- case 29:
- #line 219 "parse.y"
- { yyval.redirect = make_redirection ( 1, r_output_force, yyvsp[0].word); ;
- break;}
- case 30:
- #line 221 "parse.y"
- { yyval.redirect = make_redirection ( yyvsp[-2].number, r_output_force, yyvsp[0].word); ;
- break;}
- case 31:
- #line 225 "parse.y"
- { yyval.element.word = yyvsp[0].word; yyval.element.redirect = 0; ;
- break;}
- case 32:
- #line 227 "parse.y"
- { yyval.element.redirect = yyvsp[0].redirect; yyval.element.word = 0; ;
- break;}
- case 33:
- #line 231 "parse.y"
- {
- yyval.redirect = yyvsp[0].redirect;
- ;
- break;}
- case 34:
- #line 235 "parse.y"
- {
- register REDIRECT *t = yyvsp[-1].redirect;
-
- while (t->next)
- t = t->next;
- t->next = yyvsp[0].redirect;
- yyval.redirect = yyvsp[-1].redirect;
- ;
- break;}
- case 35:
- #line 246 "parse.y"
- { yyval.command = make_simple_command (yyvsp[0].element, (COMMAND *)NULL); ;
- break;}
- case 36:
- #line 248 "parse.y"
- { yyval.command = make_simple_command (yyvsp[0].element, yyvsp[-1].command); ;
- break;}
- case 37:
- #line 252 "parse.y"
- { yyval.command = clean_simple_command (yyvsp[0].command); ;
- break;}
- case 38:
- #line 255 "parse.y"
- { yyval.command = yyvsp[0].command; ;
- break;}
- case 39:
- #line 258 "parse.y"
- {
- yyval.command->redirects = yyvsp[0].redirect;
- yyval.command = yyvsp[-1].command;
- ;
- break;}
- case 40:
- #line 265 "parse.y"
- { yyval.command = make_for_command (yyvsp[-4].word, (WORD_LIST *)add_string_to_list ("\"$@\"", (WORD_LIST *)NULL), yyvsp[-1].command); ;
- break;}
- case 41:
- #line 267 "parse.y"
- { yyval.command = make_for_command (yyvsp[-4].word, (WORD_LIST *)add_string_to_list ("$@", (WORD_LIST *)NULL), yyvsp[-1].command); ;
- break;}
- case 42:
- #line 269 "parse.y"
- { yyval.command = make_for_command (yyvsp[-5].word, (WORD_LIST *)add_string_to_list ("\"$@\"", (WORD_LIST *)NULL), yyvsp[-1].command); ;
- break;}
- case 43:
- #line 271 "parse.y"
- { yyval.command = make_for_command (yyvsp[-5].word, (WORD_LIST *)add_string_to_list ("\"$@\"", (WORD_LIST *)NULL), yyvsp[-1].command); ;
- break;}
- case 44:
- #line 274 "parse.y"
- { yyval.command = make_for_command (yyvsp[-8].word, (WORD_LIST *)reverse_list (yyvsp[-5].word_list), yyvsp[-1].command); ;
- break;}
- case 45:
- #line 276 "parse.y"
- { yyval.command = make_for_command (yyvsp[-8].word, (WORD_LIST *)reverse_list (yyvsp[-5].word_list), yyvsp[-1].command); ;
- break;}
- case 46:
- #line 279 "parse.y"
- { yyval.command = make_case_command (yyvsp[-4].word, (PATTERN_LIST *)NULL); ;
- break;}
- case 47:
- #line 281 "parse.y"
- { yyval.command = make_case_command (yyvsp[-5].word, yyvsp[-2].pattern); ;
- break;}
- case 48:
- #line 283 "parse.y"
- { /* Nobody likes this...
- report_syntax_error ("Inserted `;;'"); */
- yyval.command = make_case_command (yyvsp[-4].word, yyvsp[-1].pattern); ;
- break;}
- case 49:
- #line 288 "parse.y"
- { yyval.command = make_if_command (yyvsp[-3].command, yyvsp[-1].command, (COMMAND *)NULL); ;
- break;}
- case 50:
- #line 290 "parse.y"
- { yyval.command = make_if_command (yyvsp[-5].command, yyvsp[-3].command, yyvsp[-1].command); ;
- break;}
- case 51:
- #line 292 "parse.y"
- { yyval.command = make_if_command (yyvsp[-4].command, yyvsp[-2].command, yyvsp[-1].command); ;
- break;}
- case 52:
- #line 295 "parse.y"
- { yyval.command = make_while_command (yyvsp[-3].command, yyvsp[-1].command); ;
- break;}
- case 53:
- #line 297 "parse.y"
- { yyval.command = make_until_command (yyvsp[-3].command, yyvsp[-1].command); ;
- break;}
- case 54:
- #line 300 "parse.y"
- { yyvsp[-1].command->subshell = WANT_SUBSHELL; yyval.command = yyvsp[-1].command; ;
- break;}
- case 55:
- #line 303 "parse.y"
- { yyval.command = yyvsp[0].command; ;
- break;}
- case 56:
- #line 306 "parse.y"
- { yyval.command = make_function_def (yyvsp[-4].word, yyvsp[0].command); ;
- break;}
- case 57:
- #line 309 "parse.y"
- { yyval.command = make_function_def (yyvsp[-4].word, yyvsp[0].command); ;
- break;}
- case 58:
- #line 312 "parse.y"
- { yyval.command = make_function_def (yyvsp[-2].word, yyvsp[0].command); ;
- break;}
- case 59:
- #line 316 "parse.y"
- { yyval.command = make_group_command (yyvsp[-1].command); ;
- break;}
- case 60:
- #line 320 "parse.y"
- { yyval.command = make_if_command (yyvsp[-2].command, yyvsp[0].command, (COMMAND *)NULL); ;
- break;}
- case 61:
- #line 322 "parse.y"
- { yyval.command = make_if_command (yyvsp[-4].command, yyvsp[-2].command, yyvsp[0].command); ;
- break;}
- case 62:
- #line 324 "parse.y"
- { yyval.command = make_if_command (yyvsp[-3].command, yyvsp[-1].command, yyvsp[0].command); ;
- break;}
- case 64:
- #line 330 "parse.y"
- { yyvsp[0].pattern->next = yyvsp[-1].pattern; yyval.pattern = yyvsp[0].pattern; ;
- break;}
- case 65:
- #line 334 "parse.y"
- { yyval.pattern = make_pattern_list (yyvsp[-2].word_list, yyvsp[0].command); ;
- break;}
- case 66:
- #line 336 "parse.y"
- { yyval.pattern = make_pattern_list (yyvsp[-2].word_list, (COMMAND *)NULL); ;
- break;}
- case 68:
- #line 342 "parse.y"
- { yyvsp[0].pattern->next = yyvsp[-1].pattern; yyval.pattern = yyvsp[0].pattern; ;
- break;}
- case 69:
- #line 346 "parse.y"
- { yyval.pattern = make_pattern_list (yyvsp[-3].word_list, yyvsp[-1].command); ;
- break;}
- case 70:
- #line 348 "parse.y"
- { yyval.pattern = make_pattern_list (yyvsp[-3].word_list, (COMMAND *)NULL); ;
- break;}
- case 71:
- #line 352 "parse.y"
- { yyval.word_list = make_word_list (yyvsp[0].word, (WORD_LIST *)NULL); ;
- break;}
- case 72:
- #line 354 "parse.y"
- { yyval.word_list = make_word_list (yyvsp[0].word, yyvsp[-2].word_list); ;
- break;}
- case 73:
- #line 363 "parse.y"
- {
- yyval.command = yyvsp[0].command;
- if (need_here_doc)
- make_here_document (redirection_needing_here_doc);
- need_here_doc = 0;
- ;
- break;}
- case 76:
- #line 374 "parse.y"
- { yyval.command = command_connect (yyvsp[-2].command, 0, '&'); ;
- break;}
- case 78:
- #line 380 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, AND_AND); ;
- break;}
- case 79:
- #line 382 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, OR_OR); ;
- break;}
- case 80:
- #line 384 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, '&'); ;
- break;}
- case 81:
- #line 386 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, ';'); ;
- break;}
- case 82:
- #line 388 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, ';'); ;
- break;}
- case 83:
- #line 390 "parse.y"
- { yyval.command = yyvsp[0].command; ;
- break;}
- case 84:
- #line 392 "parse.y"
- {
- yyvsp[0].command->invert_pipeline = 1;
- yyval.command = yyvsp[0].command;
- ;
- break;}
- case 90:
- #line 414 "parse.y"
- {
- yyval.command = yyvsp[0].command;
- if (need_here_doc)
- make_here_document (redirection_needing_here_doc);
- need_here_doc = 0;
- ;
- break;}
- case 91:
- #line 421 "parse.y"
- {
- yyval.command = command_connect (yyvsp[-1].command, (COMMAND *)NULL, '&');
- if (need_here_doc)
- make_here_document (redirection_needing_here_doc);
- need_here_doc = 0;
- ;
- break;}
- case 92:
- #line 428 "parse.y"
- {
- yyval.command = yyvsp[-1].command;
- if (need_here_doc)
- make_here_document (redirection_needing_here_doc);
- need_here_doc = 0;
- ;
- break;}
- case 93:
- #line 437 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, AND_AND); ;
- break;}
- case 94:
- #line 439 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, OR_OR); ;
- break;}
- case 95:
- #line 441 "parse.y"
- { yyval.command = command_connect (yyvsp[-2].command, yyvsp[0].command, '&'); ;
- break;}
- case 96:
- #line 443 "parse.y"
- { yyval.command = command_connect (yyvsp[-2].command, yyvsp[0].command, ';'); ;
- break;}
- case 97:
- #line 445 "parse.y"
- { yyval.command = yyvsp[0].command; ;
- break;}
- case 98:
- #line 447 "parse.y"
- {
- yyvsp[0].command->invert_pipeline = 1;
- yyval.command = yyvsp[0].command;
- ;
- break;}
- case 99:
- #line 455 "parse.y"
- { yyval.command = command_connect (yyvsp[-3].command, yyvsp[0].command, '|'); ;
- break;}
- case 100:
- #line 457 "parse.y"
- { yyval.command = yyvsp[0].command; ;
- break;}
- }
- /* the action file gets copied in in place of this dollarsign */
- #line 423 "/net/acae127/home/bammi/lib/bison.simple"
-
- yyvsp -= yylen;
- yyssp -= yylen;
- #ifdef YYLSP_NEEDED
- yylsp -= yylen;
- #endif
-
- #if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
- #endif
-
- *++yyvsp = yyval;
-
- #ifdef YYLSP_NEEDED
- yylsp++;
- if (yylen == 0)
- {
- yylsp->first_line = yylloc.first_line;
- yylsp->first_column = yylloc.first_column;
- yylsp->last_line = (yylsp-1)->last_line;
- yylsp->last_column = (yylsp-1)->last_column;
- yylsp->text = 0;
- }
- else
- {
- yylsp->last_line = (yylsp+yylen-1)->last_line;
- yylsp->last_column = (yylsp+yylen-1)->last_column;
- }
- #endif
-
- /* Now "shift" the result of the reduction.
- Determine what state that goes to,
- based on the state we popped back to
- and the rule number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
- if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTBASE];
-
- goto yynewstate;
-
- yyerrlab: /* here on detecting error */
-
- if (! yyerrstatus)
- /* If not already recovering from an error, report this error. */
- {
- ++yynerrs;
-
- #ifdef YYERROR_VERBOSE
- yyn = yypact[yystate];
-
- if (yyn > YYFLAG && yyn < YYLAST)
- {
- int size = 0;
- char *msg;
- int x, count;
-
- count = 0;
- for (x = 0; x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- size += strlen(yytname[x]) + 15, count++;
- msg = (char *) xmalloc(size + 15);
- strcpy(msg, "parse error");
-
- if (count < 5)
- {
- count = 0;
- for (x = 0; x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- {
- strcat(msg, count == 0 ? ", expecting `" : " or `");
- strcat(msg, yytname[x]);
- strcat(msg, "'");
- count++;
- }
- }
- yyerror(msg);
- free(msg);
- }
- else
- #endif /* YYERROR_VERBOSE */
- yyerror("parse error");
- }
-
- yyerrlab1: /* here on error raised explicitly by an action */
-
- if (yyerrstatus == 3)
- {
- /* if just tried and failed to reuse lookahead token after an error, discard it. */
-
- /* return failure if at end of input */
- if (yychar == YYEOF)
- YYABORT;
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
- #endif
-
- yychar = YYEMPTY;
- }
-
- /* Else will try to reuse lookahead token
- after shifting the error token. */
-
- yyerrstatus = 3; /* Each real token shifted decrements this */
-
- goto yyerrhandle;
-
- yyerrdefault: /* current state does not do anything special for the error token. */
-
- #if 0
- /* This is wrong; only states that explicitly want error tokens
- should shift them. */
- yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
- if (yyn) goto yydefault;
- #endif
-
- yyerrpop: /* pop the current state because it cannot handle the error token */
-
- if (yyssp == yyss) YYABORT;
- yyvsp--;
- yystate = *--yyssp;
- #ifdef YYLSP_NEEDED
- yylsp--;
- #endif
-
- #if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "Error: state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
- #endif
-
- yyerrhandle:
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yyerrdefault;
-
- yyn += YYTERROR;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
- goto yyerrdefault;
-
- yyn = yytable[yyn];
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrpop;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrpop;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- #if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting error token, ");
- #endif
-
- *++yyvsp = yylval;
- #ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
- #endif
-
- yystate = yyn;
- goto yynewstate;
- }
- #line 459 "parse.y"
-
-
- /* Initial size to allocate for tokens, and the
- amount to grow them by. */
- #define TOKEN_DEFAULT_GROW_SIZE 512
-
- /* The token currently being read. */
- int current_token = 0;
-
- /* The last read token, or NULL. read_token () uses this for context
- checking. */
- int last_read_token = 0;
-
- /* The token read prior to last_read_token. */
- int token_before_that = 0;
-
- /* Global var is non-zero when end of file has been reached. */
- int EOF_Reached = 0;
-
- /* yy_getc () returns the next available character from input or EOF.
- yy_ungetc (c) makes `c' the next character to read.
- init_yy_io (get, unget), makes the function `get' the installed function
- for getting the next character, and makes `unget' the installed function
- for un-getting a character. */
- return_EOF () /* does nothing good. */
- {
- return (EOF);
- }
-
- /* Variables containing the current get and unget functions. */
-
- /* Some stream `types'. */
- #define st_stream 0
- #define st_string 1
-
- Function *get_yy_char = return_EOF;
- Function *unget_yy_char = return_EOF;
- int yy_input_type = st_stream;
- FILE *yy_input_dev = (FILE *)NULL;
-
- /* The current stream name. In the case of a file, this is a filename. */
- char *stream_name = (char *)NULL;
-
- /* Function to set get_yy_char and unget_yy_char. */
- init_yy_io (get_function, unget_function, type, location)
- Function *get_function, *unget_function;
- int type;
- FILE *location;
- {
- get_yy_char = get_function;
- unget_yy_char = unget_function;
- yy_input_type = type;
- yy_input_dev = location;
- }
-
- /* Call this to get the next character of input. */
- yy_getc ()
- {
- return (*get_yy_char) ();
- }
-
- /* Call this to unget C. That is, to make C the next character
- to be read. */
- yy_ungetc (c)
- {
- return (*unget_yy_char) (c);
- }
-
- /* **************************************************************** */
- /* */
- /* Let input be read from readline (). */
- /* */
- /* **************************************************************** */
-
- #if defined (READLINE)
- char *current_readline_prompt = (char *)NULL;
- char *current_readline_line = (char *)NULL;
- int current_readline_line_index = 0;
-
- static int readline_initialized_yet = 0;
- int
- yy_readline_get ()
- {
- if (!current_readline_line)
- {
- char *readline ();
- SigHandler *old_sigint;
- extern sighandler sigint_sighandler ();
- extern int interrupt_immediately;
-
- #if defined (JOB_CONTROL)
- extern int shell_pgrp, job_control;
- #endif
-
- if (!readline_initialized_yet)
- {
- initialize_readline ();
- readline_initialized_yet = 1;
- }
-
- #if defined (JOB_CONTROL)
- if (job_control)
- give_terminal_to (shell_pgrp);
- #endif /* JOB_CONTROL */
-
- old_sigint = (SigHandler *)signal (SIGINT, sigint_sighandler);
- interrupt_immediately++;
-
- if (!current_readline_prompt)
- current_readline_line = readline ("");
- else
- current_readline_line = readline (current_readline_prompt);
-
- interrupt_immediately--;
- signal (SIGINT, old_sigint);
-
- /* Reset the prompt to whatever is in the decoded value of
- prompt_string_pointer. */
- reset_readline_prompt ();
-
- current_readline_line_index = 0;
-
- if (!current_readline_line)
- {
- current_readline_line_index = 0;
- return (EOF);
- }
-
- current_readline_line =
- (char *)xrealloc (current_readline_line,
- 2 + strlen (current_readline_line));
- strcat (current_readline_line, "\n");
- }
-
- if (!current_readline_line[current_readline_line_index])
- {
- free (current_readline_line);
- current_readline_line = (char *)NULL;
- return (yy_readline_get ());
- }
- else
- {
- int c = current_readline_line[current_readline_line_index++];
- return (c);
- }
- }
-
- int
- yy_readline_unget (c)
- {
- if (current_readline_line_index && current_readline_line)
- current_readline_line[--current_readline_line_index] = c;
- return (c);
- }
-
- with_input_from_stdin ()
- {
- init_yy_io (yy_readline_get, yy_readline_unget,
- st_string, (FILE *)current_readline_line);
- stream_name = savestring ("readline stdin");
- }
-
- #else /* !READLINE */
-
- with_input_from_stdin ()
- {
- with_input_from_stream (stdin, "stdin");
- }
- #endif /* !READLINE */
-
- /* **************************************************************** */
- /* */
- /* Let input come from STRING. STRING is zero terminated. */
- /* */
- /* **************************************************************** */
-
- int
- yy_string_get ()
- {
- /* If the string doesn't exist, or is empty, EOF found. */
- if (!(char *)yy_input_dev || !*(char *)yy_input_dev)
- return (EOF);
- else
- {
- register char *temp = (char *)yy_input_dev;
- int c = *temp++;
- yy_input_dev = (FILE *)temp;
- return (c);
- }
- }
-
- int
- yy_string_unget (c)
- int c;
- {
- register char *temp = (char *)yy_input_dev;
- *(--temp) = c;
- yy_input_dev = (FILE *)temp;
- return (c);
- }
-
- with_input_from_string (string, name)
- char *string;
- char *name;
- {
- init_yy_io (yy_string_get, yy_string_unget, st_string, (FILE *)string);
- stream_name = savestring (name);
- }
-
- /* **************************************************************** */
- /* */
- /* Let input come from STREAM. */
- /* */
- /* **************************************************************** */
-
- #if defined(atarist)
- extern int console_read_byte();
- #endif
-
- int
- yy_stream_get ()
- {
- if (yy_input_dev)
- #if defined (USG)
- return (sysv_getc (yy_input_dev));
- #else
- /**
- ** (sjk)++ Atari ST hack for input
- **/
- #if !defined(atarist)
- return (getc (yy_input_dev));
- #else
- return(console_read_byte(fileno(yy_input_dev)));
- #endif
- #endif /* USG */
- else return (EOF);
- }
-
- int
- yy_stream_unget (c)
- int c;
- {
- return (ungetc (c, yy_input_dev));
- }
-
- with_input_from_stream (stream, name)
- FILE *stream;
- char *name;
- {
- init_yy_io (yy_stream_get, yy_stream_unget, st_stream, stream);
- stream_name = savestring (name);
- }
-
- typedef struct stream_saver {
- struct stream_saver *next;
- Function *getter, *putter;
- int type, line;
- char *location, *name;
- } STREAM_SAVER;
-
- /* The globally known line number. */
- int line_number = 0;
-
- STREAM_SAVER *stream_list = (STREAM_SAVER *)NULL;
-
- push_stream ()
- {
- STREAM_SAVER *temp = (STREAM_SAVER *)xmalloc (sizeof (STREAM_SAVER));
- temp->type = yy_input_type;
- temp->location = (char *)yy_input_dev;
- temp->getter = get_yy_char;
- temp->putter = unget_yy_char;
- temp->line = line_number;
- temp->name = stream_name; stream_name = (char *)NULL;
- temp->next = stream_list;
- stream_list = temp;
- EOF_Reached = line_number = 0;
- }
-
- pop_stream ()
- {
- if (!stream_list)
- {
- EOF_Reached = 1;
- }
- else
- {
- STREAM_SAVER *temp = stream_list;
-
- EOF_Reached = 0;
- stream_list = stream_list->next;
-
- if (stream_name)
- free (stream_name);
- stream_name = temp->name;
-
- init_yy_io (temp->getter, temp->putter, temp->type, (FILE *)temp->location);
- line_number = temp->line;
- free (temp);
- }
- }
-
- /*
- * This is used to inhibit alias expansion and reserved word recognition
- * inside case statement pattern lists. A `case statement pattern list'
- * is:
- * everything between the `in' in a `case word in' and the next ')'
- * or `esac'
- * everything between a `;;' and the next `)' or `esac'
- */
- static int in_case_pattern_list = 0;
-
- #if defined (ALIAS)
- /*
- * Pseudo-global variables used in implementing token-wise alias expansion.
- */
-
- static int expand_next_token = 0;
- static char *current_token_being_expanded = (char *)NULL;
- static char *pending_token_being_expanded = (char *)NULL;
-
- /*
- * Pushing and popping strings. This works together with shell_getc to
- * implement alias expansion on a per-token basis.
- */
-
- typedef struct string_saver {
- struct string_saver *next;
- int expand_alias; /* value to set expand_alias to when string is popped */
- char *saved_line;
- int saved_line_size, saved_line_index, saved_line_terminator;
- char *saved_token_being_expanded;
- } STRING_SAVER;
-
- STRING_SAVER *pushed_string_list = (STRING_SAVER *)NULL;
-
- static void save_expansion ();
-
- /*
- * Push the current shell_input_line onto a stack of such lines and make S
- * the current input. Used when expanding aliases. EXPAND is used to set
- * the value of expand_next_token when the string is popped, so that the
- * word after the alias in the original line is handled correctly when the
- * alias expands to multiple words. TOKEN is the token that was expanded
- * into S; it is saved and used to prevent infinite recursive expansion.
- */
- static void
- push_string (s, expand, token)
- char *s;
- int expand;
- char *token;
- {
- extern char *shell_input_line;
- extern int shell_input_line_size, shell_input_line_index,
- shell_input_line_terminator;
- STRING_SAVER *temp = (STRING_SAVER *) xmalloc (sizeof (STRING_SAVER));
-
- temp->expand_alias = expand;
- temp->saved_line = shell_input_line;
- temp->saved_line_size = shell_input_line_size;
- temp->saved_line_index = shell_input_line_index;
- temp->saved_line_terminator = shell_input_line_terminator;
- temp->saved_token_being_expanded = current_token_being_expanded;
- temp->next = pushed_string_list;
- pushed_string_list = temp;
-
- save_expansion (token);
-
- current_token_being_expanded = token;
- shell_input_line = s;
- shell_input_line_size = strlen (s);
- shell_input_line_index = 0;
- shell_input_line_terminator = '\0';
- expand_next_token = 0;
- }
-
- /*
- * Make the top of the pushed_string stack be the current shell input.
- * Only called when there is something on the stack. Called from shell_getc
- * when it thinks it has consumed the string generated by an alias expansion
- * and needs to return to the original input line.
- */
- static void
- pop_string ()
- {
- extern char *shell_input_line;
- extern int shell_input_line_size, shell_input_line_index,
- shell_input_line_terminator;
- STRING_SAVER *t;
-
- if (shell_input_line)
- free (shell_input_line);
- shell_input_line = pushed_string_list->saved_line;
- shell_input_line_index = pushed_string_list->saved_line_index;
- shell_input_line_size = pushed_string_list->saved_line_size;
- shell_input_line_terminator = pushed_string_list->saved_line_terminator;
- expand_next_token = pushed_string_list->expand_alias;
- pending_token_being_expanded = pushed_string_list->saved_token_being_expanded;
- t = pushed_string_list;
- pushed_string_list = pushed_string_list->next;
- free((char *)t);
- }
-
- static void
- free_string_list ()
- {
- register STRING_SAVER *t = pushed_string_list, *t1;
-
- while (t)
- {
- t1 = t->next;
- if (t->saved_line)
- free (t->saved_line);
- if (t->saved_token_being_expanded)
- free (t->saved_token_being_expanded);
- free ((char *)t);
- t = t1;
- }
- pushed_string_list = (STRING_SAVER *)NULL;
- }
-
- /* This is a stack to save the values of all tokens for which alias
- expansion has been performed during the current call to read_token ().
- It is used to prevent alias expansion loops:
-
- alias foo=bar
- alias bar=baz
- alias baz=foo
-
- Ideally this would be taken care of by push and pop string, but because
- of when strings are popped the stack will not contain the correct
- strings to test against. (The popping is done in shell_getc, so that when
- the current string is exhausted, shell_getc can simply pop that string off
- the stack, restore the previous string, and continue with the character
- following the token whose expansion was originally pushed on the stack.)
-
- What we really want is a record of all tokens that have been expanded for
- aliases during the `current' call to read_token(). This does that, at the
- cost of being somewhat special-purpose (OK, OK vile and unclean). Brian,
- you had better rewrite this whole piece of garbage before the next version
- is released.
- */
-
- typedef struct _exp_saver {
- struct _exp_saver *next;
- char *saved_token;
- } EXPANSION_SAVER;
-
- EXPANSION_SAVER *expanded_token_stack = (EXPANSION_SAVER *)NULL;
-
- static void
- save_expansion (s)
- char *s;
- {
- EXPANSION_SAVER *t;
-
- t = (EXPANSION_SAVER *) xmalloc (sizeof (EXPANSION_SAVER));
- t->saved_token = savestring (s);
- t->next = expanded_token_stack;
- expanded_token_stack = t;
- }
-
- /*
- * Return 1 if TOKEN has already been expanded in the current `stack' of
- * expansions. If it has been expanded already, it will appear as the value
- * of saved_token for some entry in the stack of expansions created for the
- * current token being expanded.
- */
- static int
- token_has_been_expanded (token)
- char *token;
- {
- register EXPANSION_SAVER *t = expanded_token_stack;
-
- while (t)
- {
- if (STREQ (token, t->saved_token))
- return (1);
- t = t->next;
- }
- return (0);
- }
-
- static void
- free_expansion_stack ()
- {
- register EXPANSION_SAVER *t = expanded_token_stack, *t1;
-
- while (t)
- {
- t1 = t->next;
- free (t->saved_token);
- free (t);
- t = t1;
- }
- expanded_token_stack = (EXPANSION_SAVER *)NULL;
- }
-
- #endif /* ALIAS */
-
- /* Return a line of text, taken from wherever yylex () reads input.
- If there is no more input, then we return NULL. */
- char *
- read_a_line ()
- {
- char *line_buffer = (char *)NULL;
- int indx = 0, buffer_size = 0;
- int c;
-
- while (1)
- {
- c = yy_getc ();
-
- if (c == 0)
- continue;
-
- /* If there is no more input, then we return NULL. */
- if (c == EOF)
- {
- c = '\n';
- if (!line_buffer)
- return ((char *)NULL);
- }
-
- /* `+2' in case the final (200'th) character in the buffer is a newline;
- otherwise the code below that NULL-terminates it will write over the
- 201st slot and kill the range checking in free(). */
- if (indx + 2 > buffer_size)
- if (!buffer_size)
- line_buffer = (char *)xmalloc (buffer_size = 200);
- else
- line_buffer = (char *)xrealloc (line_buffer, buffer_size += 200);
-
- line_buffer[indx++] = c;
- if (c == '\n')
- {
- line_buffer[indx] = '\0';
- return (line_buffer);
- }
- }
- }
-
- /* Return a line as in read_a_line (), but insure that the prompt is
- the secondary prompt. */
- char *
- read_secondary_line ()
- {
- prompt_string_pointer = &ps2_prompt;
- prompt_again ();
- return (read_a_line ());
- }
-
-
- /* **************************************************************** */
- /* */
- /* YYLEX () */
- /* */
- /* **************************************************************** */
-
- /* Reserved words. These are only recognized as the first word of a
- command. TOKEN_WORD_ALIST. */
- struct {
- char *word;
- int token;
- } token_word_alist[] = {
- {"if", IF},
- {"then", THEN},
- {"else", ELSE},
- {"elif", ELIF},
- {"fi", FI},
- {"case", CASE},
- {"esac", ESAC},
- {"for", FOR},
- {"while", WHILE},
- {"until", UNTIL},
- {"do", DO},
- {"done", DONE},
- {"in", IN},
- {"function", FUNCTION},
- {"{", '{'},
- {"}", '}'},
- {"!", BANG},
- {(char *)NULL, 0}
- };
-
- /* Where shell input comes from. History expansion is performed on each
- line, when the shell is interactive. */
- char *shell_input_line = (char *)NULL;
- int shell_input_line_index = 0;
- int shell_input_line_size = 0; /* amount allocated for shell_input_line */
- int shell_input_line_len = 0; /* strlen (shell_input_line) */
-
- /* Either zero, or EOF. */
- int shell_input_line_terminator = 0;
-
- /* Return the next shell input character. This always reads characters
- from shell_input_line; when that line is exhausted, it is time to
- read the next line. */
- int
- shell_getc (remove_quoted_newline)
- int remove_quoted_newline;
- {
- extern int login_shell;
- int c;
-
- QUIT; /* XXX this is experimental */
-
- #if defined (ALIAS)
- /* If shell_input_line[shell_input_line_index] == 0, but there is
- something on the pushed list of strings, then we don't want to go
- off and get another line. We let the code down below handle it. */
-
- if (!shell_input_line || ((!shell_input_line[shell_input_line_index]) &&
- (pushed_string_list == (STRING_SAVER *)NULL)))
- #else /* !ALIAS */
- if (!shell_input_line || !shell_input_line[shell_input_line_index])
- #endif /* !ALIAS */
- {
- register int i, l;
- char *pre_process_line (), *expansions;
-
- restart_read_next_line:
-
- line_number++;
-
- restart_read:
-
- QUIT; /* XXX experimental */
-
- i = 0;
- shell_input_line_terminator = 0;
-
- #if defined (JOB_CONTROL)
- notify_and_cleanup ();
- #endif
-
- clearerr (stdin);
- while (c = yy_getc ())
- {
- if (i + 2 > shell_input_line_size)
- shell_input_line = (char *)
- xrealloc (shell_input_line, shell_input_line_size += 256);
-
- if (c == EOF)
- {
- clearerr (stdin);
-
- if (!i)
- shell_input_line_terminator = EOF;
-
- shell_input_line[i] = '\0';
- break;
- }
-
- shell_input_line[i++] = c;
-
- if (c == '\n')
- {
- shell_input_line[--i] = '\0';
- break;
- }
- }
- shell_input_line_index = 0;
- shell_input_line_len = i; /* == strlen (shell_input_line) */
-
- if (!shell_input_line[0])
- goto after_pre_process;
-
- if (interactive)
- {
- expansions = pre_process_line (shell_input_line, 1, 1);
-
- free (shell_input_line);
- shell_input_line = expansions;
- shell_input_line_len = shell_input_line ?
- strlen (shell_input_line) :
- 0;
- /* We have to force the xrealloc below because we don't know the
- true allocated size of shell_input_line anymore. */
- shell_input_line_size = shell_input_line_len;
- }
-
- after_pre_process:
- if (shell_input_line)
- {
- if (echo_input_at_read)
- fprintf (stderr, "%s\n", shell_input_line);
- }
- else
- {
- shell_input_line_size = 0;
- prompt_string_pointer = ¤t_prompt_string;
- prompt_again ();
- goto restart_read;
- }
-
- /* Add the newline to the end of this string, iff the string does
- not already end in an EOF character. */
- if (shell_input_line_terminator != EOF)
- {
- l = shell_input_line_len; /* was a call to strlen */
-
- if (l + 3 > shell_input_line_size)
- shell_input_line = (char *)xrealloc (shell_input_line,
- 1 + (shell_input_line_size += 2));
-
- strcpy (shell_input_line + l, "\n");
- }
- }
-
- c = shell_input_line[shell_input_line_index];
-
- if (c)
- shell_input_line_index++;
-
- if (c == '\\' && remove_quoted_newline &&
- shell_input_line[shell_input_line_index] == '\n')
- {
- prompt_again ();
- goto restart_read_next_line;
- }
-
- #if defined (ALIAS)
- /*
- * If c is NULL, we have reached the end of the current input string. If
- * pushed_string_list is non-empty, it's time to pop to the previous string
- * because we have fully consumed the result of the last alias expansion.
- * Do it transparently; just return the next character of the string popped
- * to. We need to hang onto current_token_being_expanded until the token
- * currently being read has been recognized; we can't restore it in
- * pop_string () because the token currently being read would be
- * inappropriately compared with it. We defer restoration until the next
- * call to read_token ().
- */
-
- if (!c && (pushed_string_list != (STRING_SAVER *)NULL))
- {
- pop_string ();
- c = shell_input_line[shell_input_line_index];
- if (c)
- shell_input_line_index++;
- }
- #endif /* ALIAS */
-
- if (!c && shell_input_line_terminator == EOF)
- {
- if (shell_input_line_index != 0)
- return ('\n');
- else
- return (EOF);
- }
-
- return (c);
- }
-
- /* Put C back into the input for the shell. */
- shell_ungetc (c)
- int c;
- {
- if (shell_input_line && shell_input_line_index)
- shell_input_line[--shell_input_line_index] = c;
- }
-
- /* Discard input until CHARACTER is seen. */
- discard_until (character)
- int character;
- {
- int c;
- while ((c = shell_getc (0)) != EOF && c != character)
- ;
- if (c != EOF )
- shell_ungetc (c);
- }
-
- #if defined (HISTORY_REDITING)
- /* Tell readline () that we have some text for it to edit. */
- re_edit (text)
- char *text;
- {
- #if defined (READLINE)
- if (strcmp (stream_name, "readline stdin") == 0)
- bash_re_edit (text);
- #endif /* READLINE */
- }
- #endif /* HISTORY_REDITING */
-
- /* Non-zero means do no history expansion on this line, regardless
- of what history_expansion says. */
- int history_expansion_inhibited = 0;
-
- /* Do pre-processing on LINE. If PRINT_CHANGES is non-zero, then
- print the results of expanding the line if there were any changes.
- If there is an error, return NULL, otherwise the expanded line is
- returned. If ADDIT is non-zero the line is added to the history
- list after history expansion. ADDIT is just a suggestion;
- REMEMBER_ON_HISTORY can veto, and does.
- Right now this does history expansion. */
- char *
- pre_process_line (line, print_changes, addit)
- char *line;
- int print_changes, addit;
- {
- char *return_value = line;
- int expanded = 0;
-
- extern int history_expansion;
- extern int remember_on_history;
- int history_expand ();
- char *history_value;
-
- /* History expand the line. If this results in no errors, then
- add that line to the history if ADDIT is non-zero. */
- if (!history_expansion_inhibited && history_expansion)
- {
- expanded = history_expand (line, &history_value);
-
- if (expanded)
- {
- if (print_changes)
- fprintf (stderr, "%s\n", history_value);
-
- /* If there was an error, return NULL. */
- if (expanded < 0)
- {
- free (history_value);
-
- #if defined (HISTORY_REDITING)
- /* New hack. We can allow the user to edit the
- failed history expansion. */
- re_edit (line);
- #endif /* HISTORY_REDITING */
- return ((char *)NULL);
- }
- }
-
- /* Let other expansions know that return_value can be free'ed,
- and that a line has been added to the history list. Note
- that we only add lines that have something in them. */
- expanded = 1;
- return_value = history_value;
- }
-
- if (addit && remember_on_history && *return_value)
- {
- extern int history_control;
- extern int history_lines_this_session;
-
- switch (history_control)
- {
- case 0:
- add_history (return_value);
- history_lines_this_session++;
- break;
- case 1:
- if (*return_value != ' ')
- {
- add_history (return_value);
- history_lines_this_session++;
- }
- break;
- case 2:
- {
- HIST_ENTRY *temp;
-
- using_history ();
- temp = previous_history ();
- if (!temp || (strcmp (temp->line, return_value) != 0))
- {
- add_history (return_value);
- history_lines_this_session++;
- }
- using_history ();
- }
- break;
- }
- }
-
- if (!expanded)
- return_value = savestring (line);
-
- return (return_value);
- }
-
-
- /* Place to remember the token. We try to keep the buffer
- at a reasonable size, but it can grow. */
- char *token = (char *)NULL;
-
- /* Current size of the token buffer. */
- int token_buffer_size = 0;
-
- /* Command to read_token () explaining what we want it to do. */
- #define READ 0
- #define RESET 1
- #define prompt_is_ps1 \
- (!prompt_string_pointer || prompt_string_pointer == &ps1_prompt)
-
- /* Function for yyparse to call. yylex keeps track of
- the last two tokens read, and calls read_token. */
-
- yylex ()
- {
- if (interactive && (!current_token || current_token == '\n'))
- {
-
- /**
- ** (sjk)++
- **/
- #if !defined(atarist)
- /* Before we print a prompt, we might have to check mailboxes.
- We do this only if it is time to do so. Notice that only here
- is the mail alarm reset; nothing takes place in check_mail ()
- except the checking of mail. Please don't change this. */
- if (prompt_is_ps1 && time_to_check_mail ())
- {
- check_mail ();
- reset_mail_timer ();
- }
- #endif
-
- /* Allow the execution of a random command just before the printing
- of each primary prompt. If the shell variable PROMPT_COMMAND
- is set then the value of it is the command to execute. */
- if (prompt_is_ps1)
- {
- char *command_to_execute = get_string_value ("PROMPT_COMMAND");
-
- if (command_to_execute)
- {
- extern Function *last_shell_builtin, *this_shell_builtin;
- extern int last_command_exit_value;
- Function *temp_last, *temp_this;
- int temp_exit_value, temp_eof_encountered;
-
- temp_last = last_shell_builtin;
- temp_this = this_shell_builtin;
- temp_exit_value = last_command_exit_value;
- temp_eof_encountered = eof_encountered;
-
- parse_and_execute
- (savestring (command_to_execute), "PROMPT_COMMAND");
-
- last_shell_builtin = temp_last;
- this_shell_builtin = temp_this;
- last_command_exit_value = temp_exit_value;
- eof_encountered = temp_eof_encountered;
- }
- }
- prompt_again ();
- }
-
- token_before_that = last_read_token;
- last_read_token = current_token;
- current_token = read_token (READ);
- return (current_token);
- }
-
- /* Called from shell.c when Control-C is typed at top level. Or
- by the error rule at top level. */
- reset_parser ()
- {
- read_token (RESET);
- }
-
- /* When non-zero, we have read the required tokens
- which allow ESAC to be the next one read. */
- static int allow_esac_as_next = 0;
-
- /* When non-zero, accept single '{' as a token itself. */
- static int allow_open_brace = 0;
-
- /* DELIMITER is the value of the delimiter that is currently
- enclosing, or zero for none. */
- static int delimiter = 0;
- static int old_delimiter = 0;
-
- /* When non-zero, an open-brace used to create a group is awaiting a close
- brace partner. */
- static int open_brace_awaiting_satisfaction = 0;
-
- /* If non-zero, it is the token that we want read_token to return regardless
- of what text is (or isn't) present to be read. read_token resets this. */
- int token_to_read = 0;
-
- /* Read the next token. Command can be READ (normal operation) or
- RESET (to normalize state). */
- read_token (command)
- int command;
- {
- extern int interactive_shell; /* Whether the current shell is interactive. */
- int character; /* Current character. */
- int peek_char; /* Temporary look-ahead character. */
- int result; /* The thing to return. */
- WORD_DESC *the_word; /* The value for YYLVAL when a WORD is read. */
-
- if (token_buffer_size < TOKEN_DEFAULT_GROW_SIZE)
- {
- if (token)
- free (token);
- token = (char *)xmalloc (token_buffer_size = TOKEN_DEFAULT_GROW_SIZE);
- }
-
- if (command == RESET)
- {
- delimiter = old_delimiter = 0;
- open_brace_awaiting_satisfaction = 0;
- in_case_pattern_list = 0;
-
- #if defined (ALIAS)
- if (pushed_string_list)
- {
- free_string_list ();
- pushed_string_list = (STRING_SAVER *)NULL;
- }
- if (pending_token_being_expanded)
- {
- free (pending_token_being_expanded);
- pending_token_being_expanded = (char *)NULL;
- }
- if (current_token_being_expanded)
- {
- free (current_token_being_expanded);
- current_token_being_expanded = (char *)NULL;
- }
-
- if (expanded_token_stack)
- {
- free_expansion_stack ();
- expanded_token_stack = (EXPANSION_SAVER *)NULL;
- }
- #endif /* ALIAS */
-
- if (shell_input_line)
- {
- free (shell_input_line);
- shell_input_line = (char *)NULL;
- shell_input_line_size = shell_input_line_index = 0;
- }
- last_read_token = '\n';
- token_to_read = '\n';
- return;
- }
-
- if (token_to_read)
- {
- int rt = token_to_read;
- token_to_read = 0;
- return (rt);
- }
-
- #if defined (ALIAS)
- /*
- * Now we can replace current_token_being_expanded with
- * pending_token_being_expanded, since the token that would be
- * inappropriately compared has already been returned.
- *
- * To see why restoring current_token_being_expanded in pop_string ()
- * could be a problem, consider "alias foo=foo". Then try to
- * expand `foo'. The initial value of current_token_being_expanded is
- * NULL, so that is what is pushed onto pushed_string_list as the
- * value of saved_token_being_expanded. "foo" then becomes shell_input_line.
- * read_token calls shell_getc for `f', `o', `o', and then shell_getc
- * hits the end of shell_input_line. pushed_string_list is not empty
- * so it gets popped. If we were to blindly restore
- * current_token_being_expanded at this point, `foo' would be compared
- * with a NULL string in the check for recursive expansion, and would
- * infinitely recurse.
- */
- if (pending_token_being_expanded)
- {
- if (current_token_being_expanded)
- free (current_token_being_expanded);
- current_token_being_expanded = pending_token_being_expanded;
- pending_token_being_expanded = (char *)NULL;
- }
-
- /* If we hit read_token () and there are no saved strings on the
- pushed_string_list, then we are no longer currently expanding a
- token. This can't be done in pop_stream, because pop_stream
- may pop the stream before the current token has finished being
- completely expanded (consider what happens when we alias foo to foo,
- and then try to expand it). */
- if (!pushed_string_list && current_token_being_expanded)
- {
- free (current_token_being_expanded);
- current_token_being_expanded = (char *)NULL;
-
- if (expanded_token_stack)
- {
- free_expansion_stack ();
- expanded_token_stack = (EXPANSION_SAVER *)NULL;
- }
- }
-
- /* This is a place to jump back to once we have successfully expanded a
- token with an alias and pushed the string with push_string () */
- re_read_token:
-
- #endif /* ALIAS */
-
- /* Read a single word from input. Start by skipping blanks. */
- while ((character = shell_getc (1)) != EOF && whitespace (character));
-
- if (character == EOF)
- return (yacc_EOF);
-
- if (character == '#' && !interactive)
- {
- /* A comment. Discard until EOL or EOF, and then return a newline. */
- discard_until ('\n');
- shell_getc (0);
-
- /* If we're about to return an unquoted newline, we can go and collect
- the text of any pending here document. */
- if (need_here_doc)
- make_here_document (redirection_needing_here_doc);
- need_here_doc = 0;
-
- return ('\n');
- }
-
- if (character == '\n')
- {
- /* If we're about to return an unquoted newline, we can go and collect
- the text of any pending here document. */
- if (need_here_doc)
- make_here_document (redirection_needing_here_doc);
- need_here_doc = 0;
-
- return (character);
- }
-
- if (member (character, "()<>;&|"))
- {
- /* Please note that the shell does not allow whitespace to
- appear in between tokens which are character pairs, such as
- "<<" or ">>". I believe this is the correct behaviour. */
-
- if (character == (peek_char = shell_getc (1)))
- {
- switch (character)
- {
- /* If '<' then we could be at "<<" or at "<<-". We have to
- look ahead one more character. */
- case '<':
- peek_char = shell_getc (1);
- if (peek_char == '-')
- return (LESS_LESS_MINUS);
- else
- {
- shell_ungetc (peek_char);
- return (LESS_LESS);
- }
-
- case '>': return (GREATER_GREATER);
- case ';':
- in_case_pattern_list = 1;
- return (SEMI_SEMI);
- case '&': return (AND_AND);
- case '|': return (OR_OR);
- }
- }
- else
- {
- if (peek_char == '&')
- {
- switch (character)
- {
- case '<': return (LESS_AND);
- case '>': return (GREATER_AND);
- }
- }
- if (character == '<' && peek_char == '>')
- return (LESS_GREATER);
- if (character == '>' && peek_char == '|')
- return (GREATER_BAR);
- if (peek_char == '>' && character == '&')
- return (AND_GREATER);
- }
- shell_ungetc (peek_char);
-
- /* If we look like we are reading the start of a function
- definition, then let the reader know about it so that
- we will do the right thing with `{'. */
- if (character == ')' &&
- last_read_token == '(' && token_before_that == WORD)
- allow_open_brace = 1;
-
- if (in_case_pattern_list && (character == ')'))
- in_case_pattern_list = 0;
-
- return (character);
- }
-
- /* Hack <&- (close stdin) case. */
- if (character == '-')
- {
- switch (last_read_token)
- {
- case LESS_AND:
- case GREATER_AND:
- return (character);
- }
- }
-
- /* Okay, if we got this far, we have to read a word. Read one,
- and then check it against the known ones. */
- {
- /* Index into the token that we are building. */
- int token_index = 0;
-
- /* ALL_DIGITS becomes zero when we see a non-digit. */
- int all_digits = digit (character);
-
- /* DOLLAR_PRESENT becomes non-zero if we see a `$'. */
- int dollar_present = 0;
-
- /* QUOTED becomes non-zero if we see one of ("), ('), (`), or (\). */
- int quoted = 0;
-
- /* Non-zero means to ignore the value of the next character, and just
- to add it no matter what. */
- int pass_next_character = 0;
-
- /* Non-zero means parsing a dollar-paren construct. It is the count of
- un-quoted closes we need to see. */
- int dollar_paren_level = 0;
-
- /* Non-zero means parsing a dollar-bracket construct ($[...]). It is
- the count of un-quoted `]' characters we need to see. */
- int dollar_bracket_level = 0;
-
- /* Another level variable. This one is for dollar_parens inside of
- double-quotes. */
- int delimited_paren_level = 0;
-
- for (;;)
- {
- if (character == EOF)
- goto got_token;
-
- if (pass_next_character)
- {
- pass_next_character = 0;
- goto got_character;
- }
-
- if (delimiter && character == '\\' && delimiter != '\'')
- {
- peek_char = shell_getc (0);
- if (peek_char != '\\')
- shell_ungetc (peek_char);
- else
- {
- token[token_index++] = character;
- goto got_character;
- }
- }
-
- /* Handle backslashes. Quote lots of things when not inside of
- double-quotes, quote some things inside of double-quotes. */
-
- if (character == '\\' && delimiter != '\'')
- {
- peek_char = shell_getc (0);
-
- /* Backslash-newline is ignored in all cases excepting
- when quoted with single quotes. */
- if (peek_char == '\n')
- {
- character = '\n';
- goto next_character;
- }
- else
- {
- shell_ungetc (peek_char);
-
- /* If the next character is to be quoted, do it now. */
- if (!delimiter || delimiter == '`' ||
- ((delimiter == '"' ) &&
- (member (peek_char, slashify_in_quotes))))
- {
- pass_next_character++;
- quoted = 1;
- goto got_character;
- }
- }
- }
-
- /* This is a hack, in its present form. If a backquote substitution
- appears within double quotes, everything within the backquotes
- should be read as part of a single word. Jesus. Now I see why
- Korn introduced the $() form. */
- if (delimiter && delimiter == '"' && character == '`')
- {
- old_delimiter = delimiter;
- delimiter = character;
- goto got_character;
- }
-
- if (delimiter)
- {
- if (character == delimiter)
- {
- if (delimited_paren_level)
- {
- #if defined (NOTDEF)
- report_error ("Expected ')' before %c", character);
- return ('\n');
- #else
- goto got_character;
- #endif /* NOTDEF */
- }
-
- delimiter = 0;
-
- if (old_delimiter == '"' && character == '`')
- {
- delimiter = old_delimiter;
- old_delimiter = 0;
- }
-
- goto got_character;
- }
- }
-
- if (!delimiter || delimiter == '`' || delimiter == '"')
- {
- if (character == '$')
- {
- peek_char = shell_getc (1);
- shell_ungetc (peek_char);
- if (peek_char == '(')
- {
- if (!delimiter)
- dollar_paren_level++;
- else
- delimited_paren_level++;
-
- pass_next_character++;
- goto got_character;
- }
- else if (peek_char == '[')
- {
- if (!delimiter)
- dollar_bracket_level++;
-
- pass_next_character++;
- goto got_character;
- }
- }
-
- /* If we are parsing a $() or $[] construct, we need to balance
- parens and brackets inside the construct. This whole function
- could use a rewrite. */
- if (character == '(')
- {
- if (delimiter && delimited_paren_level)
- delimited_paren_level++;
-
- if (!delimiter && dollar_paren_level)
- dollar_paren_level++;
- }
-
- if (character == '[')
- {
- if (!delimiter && dollar_bracket_level)
- dollar_bracket_level++;
- }
-
- /* This code needs to take into account whether we are inside a
- case statement pattern list, and whether this paren is supposed
- to terminate it (hey, it could happen). It's not as simple
- as just using in_case_pattern_list, because we're not parsing
- anything while we're reading a $( ) construct. Maybe we
- should move that whole mess into the yacc parser. */
- if (character == ')')
- {
- if (delimiter && delimited_paren_level)
- delimited_paren_level--;
-
- if (!delimiter && dollar_paren_level)
- {
- dollar_paren_level--;
- goto got_character;
- }
- }
-
- if (character == ']')
- {
- if (!delimiter && dollar_bracket_level)
- {
- dollar_bracket_level--;
- goto got_character;
- }
- }
- }
-
- if (!dollar_paren_level && !dollar_bracket_level && !delimiter &&
- member (character, " \t\n;&()|<>"))
- {
- shell_ungetc (character);
- goto got_token;
- }
-
- if (!delimiter)
- {
- if (character == '"' || character == '`' || character == '\'')
- {
- quoted = 1;
- delimiter = character;
- goto got_character;
- }
- }
-
- if (all_digits) all_digits = digit (character);
- if (character == '$') dollar_present = 1;
-
- got_character:
-
- token[token_index++] = character;
-
- if (token_index == (token_buffer_size - 1))
- token = (char *)xrealloc (token, (token_buffer_size
- += TOKEN_DEFAULT_GROW_SIZE));
- {
- char *decode_prompt_string ();
-
- next_character:
- if (character == '\n' && interactive && yy_input_type != st_string)
- prompt_again ();
- }
- /* We want to remove quoted newlines (that is, a \<newline> pair)
- unless we are within single quotes or pass_next_character is
- set (the shell equivalent of literal-next). */
- character = shell_getc ((delimiter != '\'') && (!pass_next_character));
- }
-
- got_token:
-
- token[token_index] = '\0';
-
- if ((delimiter || dollar_paren_level || dollar_bracket_level) && character == EOF)
- {
- if (dollar_paren_level && !delimiter)
- delimiter = ')';
- else if (dollar_bracket_level && !delimiter)
- delimiter = ']';
-
- report_error ("Unexpected EOF. Looking for `%c'.", delimiter);
- return (-1);
- }
-
- if (all_digits)
- {
- /* Check to see what thing we should return. If the last_read_token
- is a `<', or a `&', or the character which ended this token is
- a '>' or '<', then, and ONLY then, is this input token a NUMBER.
- Otherwise, it is just a word, and should be returned as such. */
-
- if ((character == '<' || character == '>') ||
- (last_read_token == LESS_AND ||
- last_read_token == GREATER_AND))
- {
- yylval.number = atoi (token); /* was sscanf (token, "%d", &(yylval.number)); */
- return (NUMBER);
- }
- }
-
- /* Handle special case. IN is recognized if the last token
- was WORD and the token before that was FOR or CASE. */
- if ((last_read_token == WORD) &&
- ((token_before_that == FOR) || (token_before_that == CASE)) &&
- (STREQ (token, "in")))
- {
- if (token_before_that == CASE)
- {
- in_case_pattern_list = 1;
- allow_esac_as_next++;
- }
- return (IN);
- }
-
- /* Ditto for DO in the FOR case. */
- if ((last_read_token == WORD) && (token_before_that == FOR) &&
- (STREQ (token, "do")))
- return (DO);
-
- /* Ditto for ESAC in the CASE case.
- Specifically, this handles "case word in esac", which is a legal
- construct, certainly because someone will pass an empty arg to the
- case construct, and we don't want it to barf. Of course, we should
- insist that the case construct has at least one pattern in it, but
- the designers disagree. */
- if (allow_esac_as_next)
- {
- allow_esac_as_next--;
- if (STREQ (token, "esac"))
- {
- in_case_pattern_list = 0;
- return (ESAC);
- }
- }
-
- /* Ditto for `{' in the FUNCTION case. */
- if (allow_open_brace)
- {
- allow_open_brace = 0;
- if (STREQ (token, "{"))
- {
- open_brace_awaiting_satisfaction++;
- return ('{');
- }
- }
-
- #ifdef ALIAS
- /* OK, we have a token. Let's try to alias expand it, if (and only if)
- it's eligible.
-
- Criteria:
- No dollar sign
- Unquoted
- Not all digits
- An identifier (all alphanumeric or underscore, first character
- is not a digit)
- Last token read was a command separator or expand_next_alias
- is set
- We are currently processing an alias (pushed_string_list is
- non-empty) and this token is not the same as the alias we're
- currently processing (or any alias we have previously
- processed.
-
- Special cases that disqualify:
- In a pattern list in a case statement (in_case_pattern_list)
- */
- if (interactive_shell && !dollar_present && !quoted &&
- !all_digits && !in_case_pattern_list &&
- (command_token_position (last_read_token) || expand_next_token))
- {
- char *alias_expand_word (), *expanded;
- if (current_token_being_expanded &&
- ((STREQ (token, current_token_being_expanded)) ||
- (token_has_been_expanded (token))))
- goto no_expansion;
-
- expanded = alias_expand_word (token);
- if (expanded)
- {
- int len = strlen (expanded), expand_next;
- char *temp;
-
- token_index = 0; /* effectively erase current token */
-
- expand_next = (expanded[len - 1] == ' ') ||
- (expanded[len - 1] == '\t');
-
- temp = savestring (token);
- push_string (expanded, expand_next, temp);
- goto re_read_token;
- }
- else
- /* This is an eligible token that does not have an expansion. */
- no_expansion:
- expand_next_token = 0;
- }
- else
- {
- expand_next_token = 0;
- }
- #endif /* ALIAS */
-
- /* Check to see if it is a reserved word. */
- if (!dollar_present && !quoted &&
- reserved_word_acceptable (last_read_token))
- {
- int i;
- for (i = 0; token_word_alist[i].word != (char *)NULL; i++)
- if (STREQ (token, token_word_alist[i].word))
- {
- if (token_word_alist[i].token == '{')
- open_brace_awaiting_satisfaction++;
-
- if (in_case_pattern_list && (token_word_alist[i].token != ESAC))
- break;
-
- if (token_word_alist[i].token == ESAC)
- in_case_pattern_list = 0;
-
- return (token_word_alist[i].token);
- }
- }
-
- /* What if we are attempting to satisfy an open-brace grouper? */
- if (open_brace_awaiting_satisfaction && strcmp (token, "}") == 0)
- {
- open_brace_awaiting_satisfaction--;
- return ('}');
- }
-
- the_word = (WORD_DESC *)xmalloc (sizeof (WORD_DESC));
- the_word->word = (char *)xmalloc (1 + strlen (token));
- strcpy (the_word->word, token);
- the_word->dollar_present = dollar_present;
- the_word->quoted = quoted;
- the_word->assignment = assignment (token);
-
- yylval.word = the_word;
- result = WORD;
- if (last_read_token == FUNCTION)
- allow_open_brace = 1;
- }
- return (result);
- }
-
- #if defined (NOTDEF) /* Obsoleted function no longer used. */
- /* Return 1 if this token is a legal shell `identifier'; that is, it consists
- solely of letters, digits, and underscores, and does not begin with a
- digit. */
- legal_identifier (name)
- char *name;
- {
- register char *s;
-
- if (!name || !*name)
- return (0);
-
- if (digit (*name))
- return (0);
-
- for (s = name; s && *s; s++)
- {
- if (!isletter (*s) && !digit (*s) && (*s != '_'))
- return (0);
- }
- return (1);
- }
- #endif /* NOTDEF */
-
- #ifdef ALIAS
- /* Return 1 if TOKEN is a command separating token. */
- command_token_position (token)
- int token;
- {
- if (member (token, "\n;(|&{") ||
- token == AND_AND ||
- token == OR_OR ||
- token == BANG || /* XXX */
- token == 0)
- return (1);
- else
- return (0);
- }
- #endif /* ALIAS */
-
- /* Return 1 if TOKEN is a token that after being read would allow
- a reserved word to be seen, else 0. */
- reserved_word_acceptable (token)
- int token;
- {
- if (member (token, "\n;()|&{") ||
- token == AND_AND ||
- token == OR_OR ||
- token == SEMI_SEMI ||
- token == DO ||
- token == IF ||
- token == WHILE ||
- token == UNTIL ||
- token == THEN ||
- token == ELSE ||
- token == ELIF ||
- token == BANG ||
- token == 0)
- return (1);
- else
- return (0);
- }
-
- #if defined (READLINE)
- /* Called after each time readline is called. This insures that whatever
- the new prompt string is gets propagated to readline's local prompt
- variable. */
- reset_readline_prompt ()
- {
- if (prompt_string_pointer && *prompt_string_pointer)
- {
- char *temp_prompt, *decode_prompt_string ();
-
- temp_prompt = decode_prompt_string (*prompt_string_pointer);
-
- if (!temp_prompt)
- temp_prompt = savestring ("");
-
- if (current_readline_prompt)
- free (current_readline_prompt);
-
- current_readline_prompt = temp_prompt;
- }
- }
- #endif
-
- /* Issue a prompt, or prepare to issue a prompt when the next character
- is read. */
- prompt_again ()
- {
- char *temp_prompt, *decode_prompt_string ();
-
- ps1_prompt = get_string_value ("PS1");
- ps2_prompt = get_string_value ("PS2");
-
- if (!prompt_string_pointer)
- prompt_string_pointer = &ps1_prompt;
-
- if (*prompt_string_pointer)
- temp_prompt = decode_prompt_string (*prompt_string_pointer);
- else
- temp_prompt = savestring ("");
-
- current_prompt_string = *prompt_string_pointer;
- prompt_string_pointer = &ps2_prompt;
-
- #if defined (READLINE)
- if (!no_line_editing)
- {
- if (current_readline_prompt)
- free (current_readline_prompt);
-
- current_readline_prompt = temp_prompt;
- }
- else
- #endif /* READLINE */
- {
- if (interactive)
- {
- fprintf (stderr, "%s", temp_prompt);
- fflush (stderr);
- }
- free (temp_prompt);
- }
- }
-
- /* This sucks. but it is just a crock for System V systems. The whole idea
- of MAXPATHLEN is a crock if you ask me. Why can't we just have
- dynamically defined sizes? (UCSB crashes every 20 minutes on me.) */
- #ifndef MAXPATHLEN
- #if !defined(atarist)
- #define MAXPATHLEN 1024
- #else
- #define MAXPATHLEN 128
- #endif
- #endif /* MAXPATHLEN */
-
- /* Return a string which will be printed as a prompt. The string
- may contain special characters which are decoded as follows:
-
- \t the time
- \d the date
- \n CRLF
- \s the name of the shell
- \w the current working directory
- \W the last element of PWD
- \u your username
- \h the hostname
- \# the command number of this command
- \! the history number of this command
- \$ a $ or a # if you are root
- \<octal> character code in octal
- \\ a backslash
- */
- #include <sys/param.h>
- #include <time.h>
-
- #define PROMPT_GROWTH 50
- char *
- decode_prompt_string (string)
- char *string;
- {
- int result_size = PROMPT_GROWTH;
- int result_index = 0;
- char *result = (char *)xmalloc (PROMPT_GROWTH);
- int c;
- char *temp = (char *)NULL;
-
- result[0] = 0;
- while (c = *string++)
- {
- if (c == '\\')
- {
- c = *string;
-
- switch (c)
- {
-
- case '0':
- case '1':
- case '2':
- case '3':
- case '4':
- case '5':
- case '6':
- case '7':
- {
- char octal_string[4];
- int n;
-
- strncpy (octal_string, string, 3);
- octal_string[3] = '\0';
-
- n = read_octal (octal_string);
-
- temp = savestring ("\\");
- if (n != -1)
- {
- string += 3;
- temp[0] = n;
- }
-
- c = 0;
- goto add_string;
- }
-
- case 't':
- case 'd':
-
- /* Make the current time/date into a string. */
- {
- long the_time = time (0);
- char *ttemp = ctime (&the_time);
- temp = savestring (ttemp);
-
- if (c == 't')
- {
- strcpy (temp, temp + 11);
- temp[8] = '\0';
- }
- else
- temp[10] = '\0';
-
- goto add_string;
- }
-
- case 'n':
- temp = savestring ("\r\n");
- goto add_string;
-
- case 's':
- {
- extern char *shell_name;
- temp = savestring (shell_name);
- goto add_string;
- }
-
- case 'w':
- case 'W':
- {
- /* Use the value of PWD because it is much more effecient. */
- #define EFFICIENT
- #ifdef EFFICIENT
- char *polite_directory_format (), t_string[MAXPATHLEN];
-
- temp = get_string_value ("PWD");
-
- if (!temp)
- getwd (t_string);
- else
- strcpy (t_string, temp);
- #else
- getwd (t_string);
- #endif /* EFFICIENT */
-
- if (c == 'W')
- {
- char *dir = (char *)rindex (t_string, '/');
- if (dir && dir != t_string)
- strcpy (t_string, dir + 1);
- temp = savestring (t_string);
- }
- else
- temp = savestring (polite_directory_format (t_string));
- goto add_string;
- }
-
- case 'u':
- {
- extern char *current_user_name;
- temp = savestring (current_user_name);
-
- goto add_string;
- }
-
- case 'h':
- {
- extern char *current_host_name;
- char *t_string;
-
- temp = savestring (current_host_name);
- if (t_string = (char *)index (temp, '.'))
- *t_string = '\0';
-
- goto add_string;
- }
-
- case '#':
- {
- extern int current_command_number;
- char number_buffer[20];
- sprintf (number_buffer, "%d", current_command_number);
- temp = savestring (number_buffer);
- goto add_string;
- }
-
- case '!':
- {
- extern int history_base, where_history ();
- char number_buffer[20];
-
- using_history ();
- if (get_string_value ("HISTSIZE"))
- sprintf (number_buffer, "%d",
- history_base + where_history ());
- else
- strcpy (number_buffer, "!");
- temp = savestring (number_buffer);
- goto add_string;
- }
-
- case '$':
- temp = savestring (geteuid () == 0 ? "#" : "$");
- goto add_string;
-
- case '\\':
- temp = savestring ("\\");
- goto add_string;
-
- default:
- temp = savestring ("\\ ");
- temp[1] = c;
-
- add_string:
- if (c)
- string++;
- result =
- (char *)sub_append_string (temp, result,
- &result_index, &result_size);
- temp = (char *)NULL; /* Free ()'ed in sub_append_string (). */
- result[result_index] = '\0';
- break;
- }
- }
- else
- {
- while (3 + result_index > result_size)
- result = (char *)xrealloc (result, result_size += PROMPT_GROWTH);
-
- result[result_index++] = c;
- result[result_index] = '\0';
- }
- }
-
- /* I don't really think that this is a good idea. Do you? */
- if (!find_variable ("NO_PROMPT_VARS"))
- {
- WORD_LIST *expand_string (), *list;
- char *string_list ();
-
- list = expand_string (result, 1);
- free (result);
- result = string_list (list);
- dispose_words (list);
- }
-
- return (result);
- }
-
- /* Report a syntax error, and restart the parser. Call here for fatal
- errors. */
- yyerror ()
- {
- report_syntax_error ((char *)NULL);
- reset_parser ();
- }
-
- /* Report a syntax error with line numbers, etc.
- Call here for recoverable errors. If you have a message to print,
- then place it in MESSAGE, otherwise pass NULL and this will figure
- out an appropriate message for you. */
- report_syntax_error (message)
- char *message;
- {
- if (message)
- {
- if (!interactive)
- {
- char *name = stream_name ? stream_name : "stdin";
- report_error ("%s:%d: `%s'", name, line_number, message);
- }
- else
- report_error ("%s", message);
-
- return;
- }
-
- if (shell_input_line && *shell_input_line)
- {
- char *error_token, *t = shell_input_line;
- register int i = shell_input_line_index;
- int token_end = 0;
-
- if (!t[i] && i)
- i--;
-
- while (i && (t[i] == ' ' || t[i] == '\t' || t[i] == '\n'))
- i--;
-
- if (i)
- token_end = i + 1;
-
- while (i && !member (t[i], " \n\t;|&"))
- i--;
-
- while (i != token_end && member (t[i], " \n\t"))
- i++;
-
- if (token_end)
- {
- error_token = (char *)alloca (1 + (token_end - i));
- strncpy (error_token, t + i, token_end - i);
- error_token[token_end - i] = '\0';
-
- report_error ("syntax error near `%s'", error_token);
- }
- else if ((i == 0) && (token_end == 0)) /* a 1-character token */
- {
- error_token = (char *) alloca (2);
- strncpy(error_token, t + i, 1);
- error_token[1] = '\0';
-
- report_error ("syntax error near `%s'", error_token);
- }
-
- if (!interactive)
- {
- char *temp = savestring (shell_input_line);
- char *name = stream_name ? stream_name : "stdin";
- int l = strlen (temp);
-
- while (l && temp[l - 1] == '\n')
- temp[--l] = '\0';
-
- report_error ("%s:%d: `%s'", name, line_number, temp);
- free (temp);
- }
- }
- else
- report_error ("Syntax error");
- }
-
- /* ??? Needed function. ??? We have to be able to discard the constructs
- created during parsing. In the case of error, we want to return
- allocated objects to the memory pool. In the case of no error, we want
- to throw away the information about where the allocated objects live.
- (dispose_command () will actually free the command. */
- discard_parser_constructs (error_p)
- int error_p;
- {
- /* if (error_p) {
- fprintf (stderr, "*");
- } */
- }
-
- /* Do that silly `type "bye" to exit' stuff. You know, "ignoreeof". */
-
- /* The number of times that we have encountered an EOF character without
- another character intervening. When this gets above the limit, the
- shell terminates. */
- int eof_encountered = 0;
-
- /* The limit for eof_encountered. */
- int eof_encountered_limit = 10;
-
- /* If we have EOF as the only input unit, this user wants to leave
- the shell. If the shell is not interactive, then just leave.
- Otherwise, if ignoreeof is set, and we haven't done this the
- required number of times in a row, print a message. */
- handle_eof_input_unit ()
- {
- extern int login_shell, EOF_Reached;
-
- if (interactive)
- {
- /* If the user wants to "ignore" eof, then let her do so, kind of. */
- if (find_variable ("ignoreeof") || find_variable ("IGNOREEOF"))
- {
- if (eof_encountered < eof_encountered_limit)
- {
- fprintf (stderr, "Use \"%s\" to leave the shell.\n",
- login_shell ? "logout" : "exit");
- eof_encountered++;
- /* Reset the prompt string to be $PS1. */
- prompt_string_pointer = (char **)NULL;
- prompt_again ();
- last_read_token = current_token = '\n';
- return;
- }
- }
-
- /* In this case EOF should exit the shell. Do it now. */
- reset_parser ();
- exit_builtin ((WORD_LIST *)NULL);
- }
- else
- {
- /* We don't write history files, etc., for non-interactive shells. */
- EOF_Reached = 1;
- }
- }
-